我正在使用natbib在一个latex文档中建立书目。我希望引文中的引文如下:
作者1等人,2022年
在参考书目中,我希望引文最多有三位作者。例如:
作者1,作者2,作者3,等人。2022年,日刊,页码,编号
我目前正在使用:
\usepackage[]{natbib}
...
...
\bibliographystyle{plainnat}
\bibliography{literatur}
我想写的是引文,但是所有的作者都写在书目里。
是否有一个简单的方法,让最大的三个作者在书目与纳蒂布?或者可能的替代物与bibtex?
发布于 2022-10-10 12:54:30
这里有一个使用biblatex
的替代方法(确保使用biber而不是bibtex进行编译)
\documentclass{article}
\usepackage[style=authoryear,minbibnames=3,natbib=true]{biblatex}
\addbibresource{biblatex-examples.bib}
\begin{document}
\cite{murray}
\printbibliography
\end{document}
https://stackoverflow.com/questions/74015174
复制相似问题