axis label messed up when exporting eps
7 ビュー (過去 30 日間)
古いコメントを表示
I have R2015 install on my linux machine. I have some plots with short math expressions as axis labels. They look fine in .fig files, but when exported to .eps, the labels are messed up by random white spaces in between. Any solution?
1 件のコメント
Walter Roberson
2018 年 4 月 1 日
Potentially related to <https://www.mathworks.com/matlabcentral/answers/159732-2014b-axis-label-errors-when-printing-to-postscript >
回答 (1 件)
Adam Barber
2015 年 8 月 10 日
Hi Lian,
I tried the following on my Debian installation using MATLAB R2015a:
plot(1:10, exp(1:10));
xlabel('x')
ylabel('y = e^x')
print('testEPS.eps', '-dpsc2')
as well as using the LaTeX interpreter:
xlabel('$x$', 'Interpreter', 'latex')
ylabel('$y = e^x$', 'Interpreter', 'latex')
In both cases, the resulting EPS looked fine when I viewed it with "Document Viewer".
Can you post how you are setting up your figure, the FIG and EPS files, as well as the print command you are using to create the EPS file? There may be something that I am missing in my reproduction steps.
Thanks,
-Adam
参考
カテゴリ
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!