.eps 文件无法与 pdfLaTeX 配合使用

.eps 文件无法与 pdfLaTeX 配合使用

正如标题所示,我正在尝试使用 .eps 文件来制作图表,但 pdfLaTeX 似乎找不到转换后的 PDF。

Package pdftex.def: File `Figures/fragment 1ab-eps-converted-to.pdf' not found: using draft setting.

我在 Windows 机器上使用 Miktex 和带有 Latex Workshop 的 Visual Studio Code。我打开了 -shell-escape 以及 Write18。

当我\usepackage{epstopdf}在代码中明确使用时,它只会生成一个空图像: 在此处输入图片描述

我尝试搜索生成的 PDF,但似乎找不到。运行 XeTeX 而不是 pdftex 可以使 .eps 可用,但会产生其他字体问题。

当我运行我的最小示例代码时:

\documentclass{article}
\usepackage{graphicx}
\usepackage{epstopdf}
\graphicspath{{Figures/}{./}}
\begin{document}

\begin{figure}
    \includegraphics{Figures/fragment 1ab.eps}
\end{figure}

\end{document}

Sorry, but miktex-epstopdf-unrestricted did not succeed.在控制台中看到一个,但它没有生成 PDF(如果我使用 PNG 而不是 .eps,则工作正常)。它还将我重定向到一个日志文件,其中显示以下内容:

2023-11-13 14:23:21,678+0100 INFO  miktex-epstopdf-unrestricted - this process (19964) started by cmd in directory c:\Latex\Templates\minimal example with command line: miktex-epstopdf-unrestricted --outfile=Figures/fragment 1ab-eps-converted-to.pdf Figures/fragment 1ab.eps
2023-11-13 14:23:21,678+0100 INFO  miktex-epstopdf-unrestricted - running on Windows 10.0.19045
2023-11-13 14:23:21,767+0100 FATAL miktex-epstopdf-unrestricted - Too many input files.
2023-11-13 14:23:21,768+0100 FATAL miktex-epstopdf-unrestricted - Too many input files.
2023-11-13 14:23:21,768+0100 FATAL miktex-epstopdf-unrestricted - Info: 
2023-11-13 14:23:21,768+0100 FATAL miktex-epstopdf-unrestricted - Source: 
2023-11-13 14:23:21,768+0100 FATAL miktex-epstopdf-unrestricted - Line: 0

相关内容