按(姓氏,名字)列出 Elsevier 文章中的参考文献

按(姓氏,名字)列出 Elsevier 文章中的参考文献

我尝试了其他各种关于参考书目的帖子的回复,但它们似乎无法解决我的问题 - 我似乎无法让参考部分按姓氏、名字首字母列出作者。相反,我得到的是名字,然后是姓氏,尽管看起来他们仍然按姓氏排序(即 SA Mednick 列在 D. Memmert 之前,等等)。

这是我的序言:

\documentclass[authoryear,a4paper,12pt,twocolumn,preprint]{elsarticle}
\title{XYZ}
\usepackage{amssymb}
\usepackage{graphicx}
\usepackage{float}
\usepackage{placeins}
%%\usepackage{natbib} % not needed, as automatically loaded by the document class
\journal{NeuroImage}
\begin{document}    
...    

\bibliographystyle{plainnat}
\bibliography{biblio}   
\end{document}

我正在使用 TexStudio。我需要添加什么?

答案1

正在使用的参考书目样式——它被设置为参数\bibliographystyle——决定了所有参考书目条目的格式。

为了获得所需的格式,您应该 (a) 从plainnatbib 样式切换到elsarticle-harvbib 样式,然后 (b) 再重新运行 LaTeX、BibTeX 和 LaTeX 两次,以完全传播所有更改。

相关内容