How to export high quality plot in eps format ?

431 visualizzazioni (ultimi 30 giorni)
andrea
andrea il 23 Giu 2020
Risposto: Jesús Gutiérrez il 24 Giu 2020
I have a problem with the quality of some plots I'm saving in eps format to insert it in a .tex file, the command i use to save the plots is :
f = gcf ;
f.Renderer = 'painters'
ax.FontSize = 25 ;
ax.FontWeight = 'bold'
grid on
f.WindowState = 'maximized'
saveas(f,'image_name','epsc');
Then the eps image is imported into latex, but the the plots in the pdf produced are somehow distorted they only became better if i zoom in , I attached a pdf to show the problem. Maybe should I use another format ? or is the above command wrong ?
  2 Commenti
jessupj
jessupj il 24 Giu 2020
looks right to me. however, i really advise checking out export fig. it has support for pdf,eps output.

Accedi per commentare.

Risposte (1)

Jesús Gutiérrez
Jesús Gutiérrez il 24 Giu 2020
I use these lines to get high quality eps and import it to LaTex documents:
set(gcf,'units','centimeters','position',[xini,yini,xsize,ysize]);
set(gca,'FontSize',10,'FontName','Times');
print("title",'-depsc2');
First line configures figure size, I use to adjust it to the line width of the report I am creating, in order to maintain fontsize when figure is imported. (You can leave xini and yini to zero)
Second line sets fontsize and font type (use listfonts to know each font code installed in your computer).
Third line finally creates a coloured .eps file.

Categorie

Scopri di più su Printing and Saving in Help Center e File Exchange

Prodotti


Release

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by