为什么带有两个点的文件名(例如“abeps”)无法通过 xelatex 编译?

为什么带有两个点的文件名(例如“abeps”)无法通过 xelatex 编译?

我有一个名为“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。

相关内容