Issue with font when exporting eps

5 vues (au cours des 30 derniers jours)
MichailM
MichailM le 20 Déc 2019
Commenté : Soumya Paul le 14 Nov 2021
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?
Capture.PNG

Réponse acceptée

Harsha Priya Daggubati
Harsha Priya Daggubati le 23 Déc 2019
Hi,
You can try setting the “TickLabelInterpreter” property of axis in the figure to “latex”. Hope this resolves your issue.
set(gca,'TickLabelInterpreter', 'latex')
  1 commentaire
Soumya Paul
Soumya Paul le 14 Nov 2021
It really helped me. Thank you Harsha.

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Printing and Saving dans Help Center et File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by