Springer Cloud 未生成参考书目

Springer Cloud 未生成参考书目

我试图提交一个,manuscriptSpringerbuilding PDFspringer 上,我发现references没有生成。当我编译相同的文档时,Overleaf它运行正常。

模板Tex代码

%%%%%%%%%%%%%%%%%%%%%%% file template.tex %%%%%%%%%%%%%%%%%%%%%%%%%
%
% This is a general template file for the LaTeX package SVJour3
% for Springer journals.          Springer Heidelberg 2010/09/16
%
% Copy it to a new file with a new name and use it as the basis
% for your article. Delete % signs as needed.
%
% This template includes a few options for different layouts and
% content for various journals. Please consult a previous issue of
% your journal as needed.
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
% First comes an example EPS file -- just ignore it and
% proceed on the \documentclass line
% your LaTeX will extract the file if required
\begin{filecontents*}{example.eps}
%!PS-Adobe-3.0 EPSF-3.0
%%BoundingBox: 19 19 221 221
%%CreationDate: Mon Sep 29 1997
%%Creator: programmed by hand (JK)
%%EndComments
gsave
newpath
  20 20 moveto
  20 220 lineto
  220 220 lineto
  220 20 lineto
closepath
2 setlinewidth
gsave
  .4 setgray fill
grestore
stroke
grestore
\end{filecontents*}
%
\RequirePackage{fix-cm}
%
%\documentclass{svjour3}                     % onecolumn (standard format)
%\documentclass[smallcondensed]{svjour3}     % onecolumn (ditto)
%\documentclass[smallextended]{svjour3}       % onecolumn (second format)
\documentclass[twocolumn]{svjour3}          % twocolumn
%
\smartqed  % flush right qed marks, e.g. at end of proof
%
\usepackage{graphicx}
\usepackage{epstopdf}
\usepackage{amsfonts}
\usepackage{algorithm}
\usepackage{algcompatible}
\usepackage{threeparttable}
\usepackage{amsmath}
%
% \usepackage{mathptmx}      % use Times fonts if available on your TeX system
%
% insert here the call for the packages your document requires
%\usepackage{latexsym}
% etc.
%
% please place your own definitions here and don't use \def but
% \newcommand{}{}
%
% Insert the name of "your journal" with
% \journalname{myjournal}
%
\begin{document}

%%%%%%%%%%%%%%%%%%%%%%%%%%% PAPER Content %%%%%%%%%%%%%%%%%%%%%%%%%%% 
%
%
%
%
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%


% BibTeX users please use one of
%\bibliographystyle{spbasic}      % basic style, author-year citations
\bibliographystyle{spmpsci}      % mathematics and physical sciences
%\bibliographystyle{spphys}       % APS-like style for physics
\bibliography{bibliography.bib}   % name your BibTeX data base

\end{document}
% end of file template.tex

参考部分

在此处输入图片描述

文件已上传至 Springer 云

在此处输入图片描述

我无法弄清楚这个问题,这非常令人沮丧,任何帮助都将不胜感激谢谢。

答案1

将 .bbl 数据复制到 .tex 文件中,而不是\bibliography{references}宏中。在下面的示例中,我注释掉了参考文献行,并从我自己的论文中包含了一个 bibitem,只是为了展示它的样子。您需要删除它并复制您自己的材料。

\bibliographystyle{spbasic}      
%\bibliography{references}   
\begin{thebibliography}{96}
\providecommand{\natexlab}[1]{#1}
\providecommand{\url}[1]{{#1}}
\providecommand{\urlprefix}{URL }
\expandafter\ifx\csname urlstyle\endcsname\relax
  \providecommand{\doi}[1]{DOI~\discretionary{}{}{}#1}\else
  \providecommand{\doi}{DOI~\discretionary{}{}{}\begingroup
  \urlstyle{rm}\Url}\fi
\providecommand{\eprint}[2][]{\url{#2}}

\bibitem[{Aberdein and Dove(2013)}]{Aberdein2013}
Aberdein A, Dove IJ (2013) Introduction. In: Aberdein A, Dove IJ (eds) The
  Argument of Mathematics, Springer Netherlands, Dordrecht, pp 1--8,
  \urlprefix\url{https://doi.org/10.1007/978-94-007-6534-4_1}


...
\end{thebibliography}

相关内容