中间名的问题

中间名的问题

在我的文献目录中,它只显示名字和姓氏,但我想也看到中间名。我的代码是:

\documentclass[a4paper,12pt]{article}
\bibliographystyle{chicago}  
\begin{document}
  \bibliography{BIB}
\end{document}

在我的 bibfile 中:

@phdthesis {RK,
title={{R}unge-{K}utta Methods for Stochastic Differential Equations},
author={Burrage, {P.M.}},
year={1999},
school={The University of Queensland, Brisbane}
}

我希望它看起来像:

Burrage, PM (1999).Runge-Kutta...

但它看起来像:

Burrage, P. (1999). 龙格-库塔...

我怎样才能改变这一点?

答案1

BibTeX 文件格式需要每个名字之间都要留一个空格,即使它们只是缩写的首字母。因此你需要

author = {Burrage, P. M.}

相关内容