包括 eps 图形并使用 pdflatex 进行编译会出现 pdftex.def 错误:未找到文件“xxx-eps-converted-to.pdf”

包括 eps 图形并使用 pdflatex 进行编译会出现 pdftex.def 错误:未找到文件“xxx-eps-converted-to.pdf”

我将图形存储在 main.tex 文件父文件夹中的目录中:

/parent
     /main
          /main.tex
     /graphics
          /figure.eps

我将该目录添加到设置中的图形路径中:

\usepackage{graphicx}   % Including figure files
\usepackage[outdir=/home/username/Paper Production/graphics/]{epstopdf}
...
\graphicspath{{../graphics/}}

...
...

\begin{figure}
 \includegraphics[scale=0.4]{multi_relation.eps}
 \caption{blabla}
 \label{blabla}
\end{figure}

我在这里读了另一篇帖子未找到转换后的 xxx-eps-converted-to.pdf解决方案是使用 epstopdf 包并指定 outdir。我尝试按照上面的方法操作。但是,当我尝试导入 eps 图形时,出现了此错误:

! Package pdftex.def Error: File `/home/username/PaperProduction/graphics/multi_re
lation-eps-converted-to.pdf' not found.

当我使用时也是一样outdir=../graphics/。有人能帮我找出问题所在吗?

答案1

默认情况下,出于安全原因,tex 无法写入当前目录下以外的文件(例如 ../anything)。

相关内容