The best way to add MATLAB/Simulink plots/figures to a Latex document
23 次查看(过去 30 天)
显示 更早的评论
Hello everyone
What is the best way to add MATLAB/Simulink plots/figures to a Latex document?
I prefer to keep figures high quality vector graphics.
0 个评论
回答(1 个)
Bruno Luong
2020-11-16
I don't know is it's the best but I export to EPS
set(fig,'renderer','Painters');
print(fig, 'figurexxx.eps','-depsc2');
Then use EPS2PDF to convert to PDF, then include in LaTeX document.
2 个评论
Ameer Hamza
2020-11-16
编辑:Ameer Hamza
2020-11-16
Even better is to use psfrag with eps files to make in place text replacements using the latex commands.
Bruno Luong
2020-11-16
编辑:Bruno Luong
2020-11-16
Good to know. I might try psfrag the next time I write a report.
EDIT: just make a quicktest and pdf2eps produces a better/sharper graph than psfrag. (The output file is also larger).
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Environment and Settings 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!