Latex 中包含多个图像时出错
编译以下代码时,
{\centering {\includegraphics[scale=.5]{splash.eps}} \caption{Splash Screen} \par}
\end{figure}
Splash screen is an integral part and shows a tutorial of application.
\begin{figure}[ht]
{\centering {\includegraphics[scale=.5]{splashmore.eps}} \caption{Splash Screen 1} \par}
\end{figure}
编译时会正确添加第一个图像(即splash.eps)。在尝试添加第二个时,编译出现以下错误。
! LaTeX Error: Cannot determine size of graphic in ./eps/splashmore.eps (no Bou
ndingBox).
See the LaTeX manual or LaTeX Companion for explanation.
Type H <return> for immediate help.
...
l.16 ...\includegraphics[scale=.5]{splashmore.eps}
} \caption{Splash Screen 1...
可能是什么问题?
编辑:问题出在图像上。我用 Gimp 打开它并将其保存为 .eps 文件,后来使用它没有任何问题。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
问题可能是
splashmore.eps
没有边界框(如错误消息所述)。您可以eps
可能会有所帮助,否则您可以使用 epstool。The problem could be that
splashmore.eps
has no Bounding Box (like the error message says). You could eithereps
could help, otherwise you could use epstool.我想您可以尝试添加
width=5cm
作为 includegraphics 的参数。不知道这是否令人满意。I guess you could try to add
width=5cm
as argument to includegraphics. Don't know if that is satisfactory though.