当我编辑参考书目时,它列出的名称是“John Smith”,而不是“Smith, John”。我该如何更改这种情况?顺便说一下,我正在使用 BibDesk。
答案1
正如@egreg 在他的评论中所说,参考文献列表中名称的出现是由参考书目样式管理的。
使用 .bib 文件给出一个简单的例子:
@book{abk,
author = "Adam Man and Eve Woman",
title = "This book",
publisher = "Men \& Women",
year = 2025
}
.tex 文件
\documentclass{article}
\bibliographystyle{alpha}
\begin{document}
Found in \cite{abk}.
\bibliography{sample2}
\end{document}
产生输出
但 .tex 文件
\documentclass{article}
\bibliographystyle{acm}
\begin{document}
Found in \cite{abk}.
\bibliography{sample2}
\end{document}
,仅在行上有所不同\bibliographystyle
,产生输出