正如我在标题中所说,我在参考书目和引文方面遇到了问题:我使用unsrt
BibTeX 样式。我知道,为了authors
在 .bib 文件中分隔字段中的不同作者,我必须使用and
逗号。当我的引文中有两位以上的作者时,这种方法非常有效,但当只有两位作者时,我注意到输出中没有显示逗号。
例如
\documentclass[a4paper,11pt]{article}
...
\bibliographystyle{unsrt}
\bibliograpy{bibfilename}
这是 bibfilename.bib 的两个条目,分别有三位和两位作者:
\begin{thebibliography}
@article{article1,
title = {Title1},
volume = {123},
number = {11},
journal = {Journal},
author = {Power, J. and Rower, C. and Atkins, D.},
year = {2012},
pages = {5780--5817}
},
正确产生
J. Power、C. Rower、D. Atkins……
进而
@article{article2,
title = {Title2},
volume = {123},
number = {3},
urldate = {2013-10-26},
journal = {Journal 2},
author = {Power, J. and Rower, C.},
year = {1995},
pages = {211--220},
},
产生
J. Power C. Rower
没有分隔逗号。我该如何解决这个问题?提前谢谢您。