Latex:Ghostscript 调用 EPS 到 PDF 的转换失败

Latex:Ghostscript 调用 EPS 到 PDF 的转换失败

我在工作中使用 eps 图表。Latex 版本是 TeXstudio 2.12.10,Miktex 2.9。包含图表的代码

\begin{subfigure}{.48\textwidth}
    \includegraphics*[width=\linewidth,keepaspectratio=false]{Graph1a.eps}  
    \caption{$T_d$ under various $V_m$ }
\end{subfigure}

我已经包含了\usepackage{epstopdf},但它仍然给我错误

MiKTeX GPL Ghostscript 9.19:无法恢复的错误,退出代码 1 xdvipdfmx:fatal: pdf_ref_obj():传递了无效对象。输出文件已删除。

任何帮助都值得感激。

答案1

test.tex在 MiKTeX 下编译这个名为 的文件时我没有遇到任何问题:

\documentclass{article}
\usepackage[pdftex]{graphicx}
\usepackage{epstopdf}
\begin{document}
  \includegraphics*[width=\linewidth,keepaspectratio=false]{FIG1.eps}  
\end{document}

但请注意,正如epstodpf软件包文档,命令行应该是:

pdflatex --enable-write18 test.tex

相关内容