Failed to save .eps file
3 views (last 30 days)
Show older comments
I use matlab to save a figure as .eps file. However, the file can not work with Latex editor as it converts the .eps figure into blank .pdf file. Any suggestion please?
0 Comments
Answers (1)
Stephen23
on 23 Apr 2020
Edited: Stephen23
on 23 Apr 2020
"However, the file can not work with Latex editor as it converts the .eps figure into blank .pdf file. Any suggestion please?"
Most likely you are actually compiling your document with pdflatex, which is the default for most installations these days (not basic LaTeX, which compiles only to DVI files). It is very important to note that pdflatex does not directly handle EPS files, it will correctly handle pdf, png and jpg only:
The simple workaround is to use the epstopdf package, so put this at the top of your LaTeX document:
\usepackage{graphicx}
\usepackage{epstopdf} % must come after GRAPHICX
And also specify the filename without an extension, i.e.:
\includegraphics{picture}
and it will automatically convert the EPS files into PDF and include them in your document.
See Also
Categories
Find more on Printing and Saving in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!