获取作者的“姓氏,名字”格式

获取作者的“姓氏,名字”格式

我获取了以下格式的参考书目:

  1. 名字 姓氏。文章..

我应该进行哪些更改才能获得以下格式的参考书目:

  1. 姓氏,名字。文章..

这是我指的 bibtex 文件:

@ARTICLE{Clark2010,
  author = {Clark, Michael James and Homer, Nils and O'Connor, Brian D. and Chen,
    Zugen and Eskin, Ascia and Lee, Hane and Merriman, Barry and Nelson,
    Stanley F},
  title = {U87MG decoded: the genomic sequence of a cytogenetically aberrant
    human cancer cell line},
  journal = {PLoS genetics},
  year = {2010},
  volume = {6},
}

以及.texMWE

\documentclass[11pt]{book}
\usepackage{cite}
\bibliographystyle{unsrt}
\begin{document}

Getting the Lastname, Firstname format \cite{Clark2010}\\

\bibliography{bibfile}
\end{document}

谢谢您的回复!

答案1

如果您选择一种非常简单的方法并且不想处理参考书目样式的文件(.bst),那么您可以这样做。

如果您将分隔逗号放在括号中,BibTeX 会将它们视为普通文本,您应该会得到您想要的内容。

所以你的.bib文件应该是:

@ARTICLE{Clark2010,
  author = {Clark{,} Michael James and Homer{,} Nils and O'Connor{,} Brian D. and Chen{,}
    Zugen and Eskin{,} Ascia and Lee{,} Hane and Merriman{,} Barry and Nelson{,}
    Stanley F},
  title = {U87MG decoded: the genomic sequence of a cytogenetically aberrant
    human cancer cell line},
  journal = {PLoS genetics},
  year = {2010},
  volume = {6},
}

如果将作者的全名放在括号中,则可获得相同的结果,如下所示:

@ARTICLE{Clark2010,
  author = {{Clark, Michael James} and {Homer, Nils} and {O'Connor, Brian D.} and {Chen,
    Zugen} and {Eskin, Ascia} and {Lee, Hane} and {Merriman, Barry} and {Nelson,
    Stanley F}},
  title = {U87MG decoded: the genomic sequence of a cytogenetically aberrant
    human cancer cell line},
  journal = {PLoS genetics},
  year = {2010},
  volume = {6},
}

相关内容