long title problem printing
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
Hei. I have written a long title for a plot but not all of it appears when saving it as pdf! any idea to fix this?
1 Commento
Walter Roberson
il 15 Nov 2017
Which MATLAB release are you using? A couple of years ago there was a release that had this problem.
What font are you using for the title?
Risposta accettata
per isakson
il 15 Nov 2017
Modificato: per isakson
il 16 Nov 2017
Two lines
title({'First line';'Second line'})
Smaller font size
h = title( 'abc' )
h.FontSize = 9;
And Walter just reminded me: a more space efficient font
h.Font = 'Helvetica';
0 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Labels and Annotations in Help Center e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!