Set default fontsize in figures

134 ビュー (過去 30 日間)
Anthony Amorosi
Anthony Amorosi 2020 年 11 月 25 日
回答済み: Abhishek 2025 年 2 月 7 日
Hello,
I am trying to setup a startup file with default parameters so that all my figures are consistent (same fonstize, linewidth, interpreter, etc). Everythings work fine except for the fontsize!
I would like the fontsize of the ticks on the x- and y-axis to be sligthly smaller than the label and legend fontsize. I used the following command in my sartup.m file:
set(groot, ...
'defaultAxesFontSize',14, ...
'defaultTextFontSize',20, ...
'defaultLegendFontSize',20, ...
)
It usually works when I manually use those lines (with gca and not groot) after every figure. But here, 'defaultAxesFontSize' sets the fontsize of all of the figure, it seems that 'defaultTextFontSize' and 'defaultLegendFontSize' do not change anything to the figure (even if I put the fontsize to 40 or higher).
Do anyone know why it does not work ? Thanks !
Anthony.

回答 (1 件)

Abhishek
Abhishek 2025 年 2 月 7 日
Hi Anthony,
I understand you want to customize the default font sizes for axes, text, and legends for all the MATLAB figures using the “startup.m file. For MATLAB R2014b and onwards, the desired result can be achieved using the below statement in the startup.m” file:
set(groot, ...
'defaultAxesFontSize',14, ...
'defaultTextFontSize',20, ...
'defaultTextFontSizeMode','manual' ...
'defaultLegendFontSize',32, ...
'defaultLegendFontSizeMode','manual' ...
)
Please refer to following already existing answer which explains about the solution in detail:

カテゴリ

Help Center および File ExchangeCreating, Deleting, and Querying Graphics Objects についてさらに検索

製品


リリース

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by