
當我使用 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}
}
另外,最好不要在任何欄位中使用全部大寫,而是使用常規大寫。