我正在使用 BibTeX (带有),并且我有一个具有以下参考的natbib
文件:mybib.bib
@Article{DPMN92,
author = {G. Da Prato and P. Malliavin and D. Nualart},
title = {Compact families of Wiener functionals},
journal = {C. R. Acad. Sci. Paris},
year = {1992},
OPTkey = {•},
volume = {315},
number = {S\'{e}rie I},
pages = {1287--1291},
OPTmonth = {•},
OPTnote = {•},
OPTannote = {•}
}
然后我还有更多。问题是这个引用的顺序是“P”而不是“D”。我试过这样绑定“Da~Prato”,但没有用,写{Da Prato}也没有用。
有什么问题?我的.tex
文件如下所示:
\documentclass[article]{imsart}
\usepackage{amsthm,amsmath,natbib}
\begin{document}
\bibliographystyle{plain}
\bibliography{mybib}
\end{document}
答案1
对于排序问题,将作者姓名写为
Da Prato, G.
这样,bibtex
就会解释Da Prato
为姓氏,并将其排序为D
:
bibtex
文档中对指定名称进行了很好的讨论驯服野兽,第 3 章,第 11 节,关于该author
领域。
\documentclass[article]{imsart}
\usepackage{amsthm,amsmath,natbib}
\begin{document}
\nocite{*}
\bibliographystyle{plain}
\bibliography{mybib}
\end{document}
mybib.bib
:
@Article{c,
author = {Clarke, A.},
title = {Title},
journal = {J.},
year = 1951
}
@Article{e,
author = {Edmunds, A.},
title = {Title},
journal = {J.},
year = 1950
}
@Article{DPMN92,
author = {Da Prato, G. and Malliavin, P. and Nualart, D.},
title = {Compact families of Wiener functionals},
journal = {C. R. Acad. Sci. Paris},
year = {1992},
OPTkey = {•},
volume = {315},
number = {S\'{e}rie I},
pages = {1287--1291},
OPTmonth = {•},
OPTnote = {•},
OPTannote = {•}
}