提交给生物信息学期刊的Latex编译错误

提交给生物信息学期刊的Latex编译错误

我正在尝试向使用手稿中心的生物信息学期刊提交一篇论文。问题出在他们的徽标 OUP_First_SBk_Bot_8401.eps 上。我上传了所有可能的名称,但编译器找不到它。

可以看出文件已上传:https://i.stack.imgur.com/TBFOy.png

图像加载在样式文件 bioinfo.cls 中。这是 main.log 中出现的错误:

LaTeX Warning: File `OUP_First_SBk_Bot_8401.eps' not found on input line 38.

! LaTeX Error: File `OUP_First_SBk_Bot_8401.eps' not found.

See the LaTeX manual or LaTeX Companion for explanation.
Type  H <return>  for immediate help.
 ...                                              
                                                  
l.38 \maketitle
               
Try typing  <return>  to proceed.
If that doesn't work, type  X <return>  to quit.

! LaTeX Error: Cannot determine size of graphic in OUP_First_SBk_Bot_8401.eps (
no BoundingBox).

我被困在这里了。如能得到任何帮助我将不胜感激。

谢谢

答案1

我遇到了同样的问题并通过在主 tex 文件中增加以下几行来修复它:

% Workaround to make 'manuscriptcentral' recognizing the Bioinformatics logo eps-file
\begingroup
\let\clearpage\relax
\include{OUP_First_SBk_Bot_8401.eps}
\endgroup

“include” 似乎使文件知道,即编译沙箱 (?) 的要求。剩余的代码只是为了防止在文档中插入额外的空格。添加这些行后,我可以将源文件上传到手稿中心,它们会编译为正确的 PDF。

相关内容