参考书目未显示在 Overleaf 上

参考书目未显示在 Overleaf 上

我创建了一个如下的 .tex 文件:

\RequirePackage{fix-cm}
\documentclass[twocolumn]{svjour3}   
\usepackage{graphicx}
\graphicspath{ {./images/} }
\usepackage[caption=false,font=footnotesize]{subfig}
\usepackage{mathtools}
\usepackage{nccmath}
\usepackage{booktabs}
\usepackage{float}
\usepackage{multirow}
\usepackage{makecell}
\usepackage[caption=false,font=footnotesize]{subfig}
\usepackage{varwidth}
\usepackage{placeins}
\usepackage{textcomp}
\usepackage{natbib}
\setcitestyle{aysep={}} 
\bibliographystyle{spbasic}
\begin{document} 
  .
  .
  .
  .
  .
\bibliography{references} 
\end{document}

中的一个条目references.bib如下所示:

@article{belter2013mechanical,
  title={Mechanical design and performance specifications of anthropomorphic prosthetic hands: A review.},
  author={Belter, Joseph T and Segil, Jacob L and Dollar, Aaron M and Weir, Richard F},
  journal={Journal of Rehabilitation Research \& Development},
  volume={50},
  number={5},
  year={2013}
}

参考书目未出现在 Overleaf 上,仅显示“?”标记。我收到软件包 natbib 警告:引用,

您引用了参考书目中未包含的内容。请确保引用 (\cite{...}) 在您的参考书目中有对应的键,并且两者的拼写相同。

相同的代码在本地机器上与 Texmaker 完美运行

答案1

您可能希望从 Springer 上传文件https://www.springer.com/gp/livingreviews/latex-templates背面。

在此处输入图片描述

\RequirePackage{fix-cm}
\documentclass[twocolumn]{svjour3}   
\usepackage{graphicx}
\graphicspath{ {./images/} }
\usepackage[caption=false,font=footnotesize]{subfig}
\usepackage{mathtools}
\usepackage{nccmath}
\usepackage{booktabs}
\usepackage{float}
\usepackage{multirow}
\usepackage{makecell}
\usepackage[caption=false,font=footnotesize]{subfig}
\usepackage{varwidth}
\usepackage{placeins}
\usepackage{textcomp}
\usepackage{natbib}
\setcitestyle{aysep={}} 
\bibliographystyle{spbasic}
\begin{document} 
The issue cannot be reproduce with~\cite{belter2013mechanical}.
\bibliography{references} 
\end{document}

相关内容