The best way to add MATLAB/Simulink plots/figures to a Latex document
19 ビュー (過去 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!