使用 XeLaTeX 时 eps 图形无法显示

使用 XeLaTeX 时 eps 图形无法显示

我正在尝试编译一个包含每股收益图像使用西拉特克斯,这是一个最小的例子:

\documentclass[]{article}
\usepackage{graphicx}

\begin{document}

\begin{figure}
    \centering
    \includegraphics[width=0.7\linewidth]{sim}
    \caption{}
    \label{fig:sim}
\end{figure}

\end{document}

在我朋友的笔记本电脑上(同样的 Windows 10,同样的 TeXLive 和 XeLaTeX 版本),它运行正常,但在我的笔记本电脑上,它产生了如下所示的空白图形:

空白图

我正在使用 XeLaTeX 和以下构建命令:

xelatex.exe -synctex=1 -interaction=nonstopmode %.tex

相关内容