Failed to save .eps file
3 次查看(过去 30 天)
显示 更早的评论
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 个评论
回答(1 个)
Stephen23
2020-4-23
编辑:Stephen23
2020-4-23
"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.
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Printing and Saving 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!