我有一个名为“L = 10_W = 8.00.eps”的图形,我将其放在 \figure 环境中
\includegraphics{L=10_W=8.00.eps}
使用 xelatex 进行编译,但出现错误:文件过早结束
在我将其重命名为“L=10_W=8.eps”后,错误消失。
答案1
这对我有用,告诉 latex 它是 eps 类型和文件本身使用的扩展名并找到边界框
\documentclass{article}
\usepackage{graphicx}
\begin{document}
\includegraphics[width=5cm,ext=.1.eps,type=eps,read=.1.eps]{example}
\end{document}
这包括example.1.eps
使用 xelatex。