-
Notifications
You must be signed in to change notification settings - Fork 87
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
更新清华大学 thuthesis 的示例 #79
Conversation
太好了,清华的我不是很熟悉,你帮忙更新最好。 |
后面我稍微修了一下,主要是bib中几个期刊条目的日期问题。 由于biber需要把日期解析成年,月,日。且年月日之间用-分隔,因此如果要表示两个起止日期,两个日期之间用/分隔。 而卷和期的起止信息解析,还是用-分隔,因为/用于表示article的和期的情况,解析函数是我用tex写的,刚测了一下似乎用--也没问题。 |
BibTeX 的标准域没有 date,也没有表示起止范围的用法,所以我在早期设计时仿照 pages 的用法用 卷和期的话,我更推荐用 |
好的,这样咱们的bib就完全兼容了。 |
另外请教一下如何将全局的 citation style 切换为非上标的样式? 文档中提到使用 我注意到 biblatex 的文档中有 \documentclass{article}
\usepackage[
backend = biber,
style = gb7714-2015,
autocite = inline,
]{biblatex}
\usepackage{filecontents}
\begin{filecontents}{\jobname.bib}
@inproceedings{dupont1974bone,
author = {Dupont, B},
title = {Bone marrow transplantation in severe combined immunodeficiency with an unrelated MLC compatible donor},
editor = {White, H J and Smith, R},
booktitle = {Proceedings of the third annual meeting of the International Society for Experimental Hematology},
address = {Houston},
publisher = {International Society for Experimental Hematology},
year = {1974},
pages = {44--46},
}
\end{filecontents}
\addbibresource{\jobname.bib}
\begin{document}
Citation: \cite{dupont1974bone}
\printbibliography
\end{document} |
autocite biblatex没有全局的设置上下标的,因为每个命令都可以定制格式的,parencite不上标只是习惯这么用,重定义一下变成上标也是可以的,所以要全局设置,只能用简单粗暴的方法。直接将所有命令let等价于满足格式要求的命令。 当然我们可以定义选项来处理这个事请。 所以说因为他的高度可定制性,他的思路和natbib不太一样。 |
感谢! 在 我感觉用 biblatex 这样设置的话最好还是另开个 |
这样也行,再开numbers |
再请教一个问题,清华的本科生格式中要求附录 A 是英文的调研报告,其中有独立的参考文献,要求格式为符合英文习惯的格式(比如 APA/MLA/Chicago/IEEE 等),区别于主文档的参考文献(格式为国标)。 我研究了一下 biblatex 提供了 |
由于style是加载时选项,所以无法直接在后面加载样式,解决方法就是把需要样式的代码拷过来,放文件里加载也行,然后做一些局部化处理,比如选项的局部化。比如有的作者数没有要求,而国标要求3个,那么就要把控制选项实现局部化。 |
清华大学刚刚更新了研究生的学位论文写作指南(tuna/thuthesis#564 ),其中的参考文献格式更新为 GB/T 7714-2015 版。 我在实现新版本的同时也打算加入 biblatex 的支持,顺便也更新一下这边的示例。