我正在使用一个包含来自 arXiv 的大量文章的 bib 文件。其引用格式如下(test.bib 的内容;bibtex 项目来自 Google Scholar):
@article{auth2020title,
title={Title of the paper},
author={Auth, A and Auth, B and Auth, C},
journal={arXiv preprint arXiv:1234.45678},
year={2020}
}
当我编译手稿文件时,它会产生一个不包含 arXiv 期刊名称的点(“。”)的参考文献。见下文。test.tex 的内容:
\documentclass[smallextended]{svjour3}
\usepackage[utf8]{inputenc}
\usepackage{natbib}
\bibliographystyle{spbasic}
\begin{document}
This is just a filler \citep{auth2020title}.
\bibliography{test}
\end{document}