Is there any option to change the font size of figures in the entire MATLABfile?

2 vues (au cours des 30 derniers jours)
Hi all,
I have a MATLAB file with so many figures. Is there any way to insert a line of code at the begging to change the font for all figures?
Currently, I am using a line of code using findall before exporting each figure. Also, is there any code to seperate title font from the rest of fonts in figures?
Thanks

Réponse acceptée

Jan
Jan le 28 Mai 2021
Modifié(e) : Jan le 28 Mai 2021
set(groot, 'DefaultTextFontSize', 20)
A smart solution is to consider this from the beginning:
titleFontSize = 18;
...
title('My title', 'FontSize', titleFontSize);
  1 commentaire
Wolfgang McCormack
Wolfgang McCormack le 28 Mai 2021
@Star Strider and @Jan. Thank you both, I picked Jan as I saw his answer before yours Star Strider but you are always a great help. Any similar option to groot for seperating the title and the rest of fonts? How should I set the figure lines to bigger lines? :D I know I should have thought about these from the beggining but well things happen.
One more problem, I don't know where on the MATLAB platform I can find the properties for a figure or Types. Any advice where to find them?

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Interactive Control and Callbacks dans Help Center et File Exchange

Produits


Version

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by