How to give different font size to label values and label names?

5 ビュー (過去 30 日間)
Palguna Gopireddy
Palguna Gopireddy 2022 年 12 月 16 日
コメント済み: Palguna Gopireddy 2022 年 12 月 19 日
Using
set(gca,'FontName', 'TimesNewRoman', 'FontSize',16,'FontWeight', 'Bold');
We can change the font size of label values and label names. But this is giving equal font size to both of them.
I want to use different font size to label values and label names. How to do it.
I am asking this because generally in paper publishing, different font size is used for them. I want to export the image from the drawn figure and paste it directly on the paper.
  1 件のコメント
VBBV
VBBV 2022 年 12 月 16 日
Do you mean different font sizes for text and numbers on axes ?

サインインしてコメントする。

採用された回答

Jan
Jan 2022 年 12 月 16 日
編集済み: Jan 2022 年 12 月 16 日
Simply specify the font directly:
plot(rand(5))
set(gca,'FontName', 'TimesNewRoman', 'FontSize',16,'FontWeight', 'Bold');
xlabel('This is x', 'FontSize', 12, 'FontName', 'monospaced', 'FontWeight', 'normal')
Alternatively set the parameters as default of the figure:
figure('DefaultAxesFontSize', 16, 'DefaultAxesLabelFontSize', 1.5);
plot(rand(5))
xlabel('The X label')
I'm not sure, why the AxesLabelFontSize is multiplied here. I did not expect this. Maybe this is a bug in the online viewer. Try it locally.
  3 件のコメント
Jan
Jan 2022 年 12 月 17 日
The full name of the setting is 'defaultAxesLabelFontSizeMultiplier' and therefore it is obviously the factor between the font size of the axes and its labels.
Palguna Gopireddy
Palguna Gopireddy 2022 年 12 月 19 日
Thank you.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeInteractive Control and Callbacks についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by