我正在用 LaTeX 写一篇论文。我正在使用软件包natbib
和plainnat
引用和参考文献的样式。问题是如何对引用和参考文献进行排序。
我想要按年份对引文进行排序(同一年份按字母顺序排列),并按作者姓氏的字母顺序对参考文献进行排序。我该怎么做?
我的代码:
\documentclass[12pt,a4paper]{article}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[left=2.00cm, right=2.00cm, top=2.00cm, bottom=2.00cm]{geometry}
\usepackage[comma,authoryear,round]{natbib}
\usepackage[none]{hyphenat}
\bibliographystyle{plainnat}
\setcitestyle{citesep={;}}
\begin{filecontents}{\jobname.bib}
@book{A,
author = {Ho, L. and Auntz, K. and Zwitter, B. F. and Valencia, D.},
year = {2010},
title = {Title Example 1},
}
@book{B,
author = {Ho, L. and Yelp, A. and Richter, G. and Gregory, K. T.},
year = {2005},
title = {Title Example 2},
}
@book{C,
author = {Ho, L. Abrook, H. and Dolman, R. G. and Fjing, H. and Ho, S. and Xerem, R.},
year = {2013},
title = {Title Example 3},
}
}
@book{D,
author = {Di Bernardo, L. and Mc Daug, C. and Coelho, L},
year = {2000},
title = {Title Example 4},
}
@book{E,
author = {Gomes, L. N. L. and Ginoris, Y. P and Brand\~{a}o, C. C. S.},
year = {2010},
title = {Title Example 5},
}
\end{filecontents}
\begin{document}
Hi, this is an example. First a citation \citep{A,B},
then an inline citation \citet{B}.
Another citation \citep{C,D} and
the last one \citep{A,E}
\bibliography{\jobname}
\end{document}
观察结果如下:
答案1
如果你添加sort
选项natbib
\usepackage[sort,comma,authoryear,round]{natbib}
然后它首先按作者姓名排序,然后按年份排序。您似乎想先按年份排序,然后按作者姓名排序。我不相信natbib
支持这一点。
编辑:修改 的副本以先按年份排序而不是按名称排序相当容易plainnat.bst
。这似乎不是您在示例中展示的内容,但也许这是您想要的。
首先,在当前目录中复制一份plainnat.bst
并命名为yearnat.bst
。在我的计算机上,我可以通过以下方式执行此操作
$ cp `kpsewhich plainnat.bst` yearnat.bst
编辑yearnat.bst
并更改该presort
函数如下。
FUNCTION {presort}
{ calc.label
label sortify
" "
*
year field.or.null sortify
" "
*
type$ "book" =
type$ "inbook" =
or
'author.editor.sort
{ type$ "proceedings" =
'editor.organization.sort
{ type$ "manual" =
'author.organization.sort
'author.sort
if$
}
if$
}
if$
*
" "
*
cite$
*
#1 entry.max$ substring$
'sort.label :=
sort.label *
#1 entry.max$ substring$
'sort.key$ :=
}
这一切只是将year
字段移动到排序键的开头。
现在,通过添加sort
上述选项和 来编译您的示例\bibliographystyle{yearnat}
。结果如下。
您可以看到所有内容首先按年份排序,然后按作者排序。如果您想知道这是如何工作的,您应该阅读韓國(或通过运行texdoc btxhak
)。