当我使用 bibtex 编译 .bib 文件时,最后一位作者的姓名首字母与其他作者的顺序不同。请考虑以下示例:输出应为:Xu, L., Jordan, MI, 和 Hinton, GE
但我得到的却是以下内容:Xu, L., Jordan, MI, 和 GE, Hinton,
我已经包含了.bib 文件和输出。
因此,以下代码
@article{Übeyli,
title={An alternative model for mixtures of experts},
author={Xu, L., Jordan, M.I., and Hinton, G.E.},
journal={Advances in neural information processing systems},
pages={633--640},
year={1995},
publisher={MORGAN KAUFMANN PUBLISHERS}
}
答案1
文件中的作者姓名bib
必须用“and”分隔,而不是逗号。因此正确的bib
文件条目应如下所示:
@article{Übeyli,
title={An alternative model for mixtures of experts},
author={Xu, L. and Jordan, M.I. and Hinton, G.E.},
journal={Advances in neural information processing systems},
pages={633--640},
year={1995},
publisher={Morgan Kaufmann Publishers}
}
此外,最好不要在任何字段中使用全大写,而是使用常规大写。