- Use the “upper” function to convert the text to uppercase.
- Modify the “FontSize” property of the “legend” function to reduce the font size, thus creating an effect like small caps.
Is there a way to write legends in small caps?
3 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Is there a way to write legends in small caps?
0 Commenti
Risposte (1)
Vedant Shah
il 10 Mar 2025
To display legends in small caps within MATLAB figure, try the following workaround:
For more details on the above-mentioned functions, refer to the documentations using the following commands in MATLAB command line:
>> web(fullfile(docroot, "/matlab/ref/upper.html"))
>> web(fullfile(docroot, "/matlab/ref/legend.html"))
Here is an example code snippet to achieve the desired formatting:
legend(upper(‘Title1’), upper('Title2'),'FontSize',7)
0 Commenti
Vedere anche
Categorie
Scopri di più su Legend in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!