Blurred latex figure label
8 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Jooo
am 13 Okt. 2020
Kommentiert: Jooo
am 13 Okt. 2020
Hello,
I was wondering if there is a way to improve the quality of the latex written text e.g. in figure labels. Attached is an example of what I mean.
Is there a solution for this problem?
2 Kommentare
Akzeptierte Antwort
Bjorn Gustavsson
am 13 Okt. 2020
Print your figure to post-script format using the -painters renderer:
print('-depsc2','-painters','Your-new-and-pretty-figure-01.eps')
The print function makes some clever selection of how to write stuff, and sometimes it automagically decides to use the default -opengl renderer which gives you a bit-mapped and not a vectorized output file even though you print to a post-scrip-file. If you explicitly tell print to use -painters, it will do as told. However, sometimes the vectorized output makes the files uncomfortably large, sometimes the renderer gets peculiar ideas about how to arrange objects in 3-D (think Escher-Reutersvärd).
HTH
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Creating, Deleting, and Querying Graphics Objects finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!