[Tex/LaTex] epstopdf conversion problem

epstopdftexstudio

I'm trying to compile a LaTeX document with eps image files in TexStudio and I'm getting the error that ... eps to pdf file not found. I tried to put the command \epstopdfsetup{outdir=./} into my LaTeX preamble, but it is not working.

Best Answer

The epstopdfconversion package needs pdflatex to be called with the option -shell-escape. You should try to edit your settings (the PdfLatex tab in the configuration window) and add the following option. It should look like

pdflatex -interaction=nonstopmode -shell-escape %.tex

Hopefully it will work properly with this. However, I think you won't get this problem if you simply use the epstopdf package instead.