我在 Mac OS X 10.9.2 中使用 MacTeX (发行版 TeXLive-2013 Intel 64) 时遇到了问题,IDE 是 TeXstudio 2.7.0。我试图在我的文档中包含一个 EPS 图形 (就像我在 Windows 中所做的那样),但出现了以下错误:
包 pdftex.def 错误:未找到文件 `./image1-eps-converted-to.pdf' \includegraphics{image1.eps}
我的最小 .tex 文件是:
\documentclass[11pt]{article}
\usepackage{graphicx}
\usepackage{epstopdf}
\epstopdfsetup{outdir=./}
\begin{document}
\includegraphics{image1.eps}
\end{document}
我尝试了在各个论坛的先前帖子中找到的一些技巧:
-> 我在其中添加了以下行PdfLaTeX/usr/texbin/pdflatex
:--shell-escape -synctex=1 -interaction=nonstopmode %.tex
-> 我添加了该\epstopdfsetup{outdir=./}
行,以防image1.eps
在正确的路径中找不到该文件。
但它不起作用......
请问,有人知道如何解决我的问题吗?