Issue with font when exporting eps
古いコメントを表示
Hi,
I have the code example below:
close all;
clear all;
clc;
t = linspace(0,2/50,1000);
w = 2*pi*50;
y = sin(w.*t);
f1 = figure(1);
plot(t,y)
set(gca, 'FontName', 'Garamond')
set(gca, 'Fontsize', 12)
xlabel('Time (s)')
ylabel('Voltage (V)')
print(f1,'-depsc2', 'MyPlot');
When saving in .eps format the the axis and ticks font are not exported properly and that is a significant issue for LaTeX users. Are there any ideas on how can be fixed?

採用された回答
その他の回答 (0 件)
カテゴリ
ヘルプ センター および File Exchange で Printing and Saving についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!