我在用
\bibliographystyle{plain}
\bibliography{my_bibliography}
按字母顺序对文档中的参考文献进行排序。在这种情况下,没有作者的杂项条目会一直出现在开头,尽管我希望它们出现在最后。有办法实现这一点吗?
答案1
只需向没有(或)字段的条目添加一个非空key
字段 -- ,其字符串值以 -- 开头。这样,这些条目将被放置在ZZ
author
editor
后已排序参考书目中的所有其他条目。(请注意key
场地与条目的键是分开的,条目的键是其所属的标签\cite
。
\RequirePackage{filecontents}
\begin{filecontents}{my_bibliography.bib}
@misc{a,author="A. Author",title="Thoughts",year=2001}
@misc{b,key="ZZ1",title="Further thoughts",year=2001}
\end{filecontents}
\documentclass{article}
\begin{document}
\nocite{*}
\bibliographystyle{plain}
\bibliography{my_bibliography}
\end{document}