Failed to save .eps file
3 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
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 Commenti
Risposte (1)
Stephen23
il 23 Apr 2020
Modificato: Stephen23
il 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.
Vedere anche
Categorie
Scopri di più su Printing and Saving in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!