上传手稿 tex 文件以供 Springer Journal 审阅

上传手稿 tex 文件以供 Springer Journal 审阅

我正在尝试在 Springer 期刊上提交一份手稿。该论文是用 Latex 写的。期刊要求分别上传手稿和图表的 .tex 文件,所以我上传了。但构建的 PDF 不正确。它返回了一些奇怪的文档,其中包含来自 Latex 的错误消息(无法弄清楚原因)。我的问题是请指导我如何上传 .tex 手稿,以便系统可以构建正确的 PDF。

答案1

解决我的问题的是,我还上传了所有 Springer 的文件:svjour3.cls、svglov3.clo 和 spmpsci_unsrt.bst,这些都是我从他们的 latex 文件夹中获得的。

答案2

通常,出现此类错误是因为 LaTeX 稿件文件中的图形和库文件带有路径。提交 LaTeX 稿件时,应始终删除图形名称中的路径,例如:

\begin{figure}
    \centering
    \includegraphics[width=1\textwidth]{C:\mypaper\figs\foo.pdf}
\caption{a test figure}
\end{figure}

或者

\begin{figure}
    \centering
    \includegraphics[width=1\textwidth]{..\figs\foo.pdf}
\caption{a test figure}
\end{figure}

这些都是错误的。

提交时,应将其重新格式化为以下格式:

\begin{figure}
    \centering
    \includegraphics[width=1\textwidth]{foo.pdf}
\caption{a test figure}
\end{figure}

类似地,参考书目部分不应该是:

\bibliographystyle{spbasic}
\bibliography{..\library.bib} or \bibliography{c:\mypaper\library.bib}

它应该是:

\bibliographystyle{spbasic}
\bibliography{library.bib}

根据经验法则,文件名中不包含相对路径或绝对路径。

另一方面,通常根本不需要提交样式文件。

相关内容