Plots have small titles

49 views (last 30 days)
Thomas
Thomas on 11 Dec 2025 at 14:54
Edited: Matt J on 12 Dec 2025 at 3:09
I have made a plot, but when exporting to eps (for use in LaTeX) and even as png the title is very small. I also think that it is small in the figure viewer. I didn't change any setting, is this just a difference between 2023b and 2025b? In 2023b it was fine, good size titles, no issues. But now with 2025b the figures have small titles, axis labels and small numbers on the axis scales. Can someone help me solve this?

Accepted Answer

Matt J
Matt J on 11 Dec 2025 at 15:01
Edited: Matt J on 12 Dec 2025 at 3:09
I also think that it is small in the figure viewer.
I haven't noticed any changes in the figure viewer. However, you can set the font size to your liking, e.g.,
plot(1:5); title('Plot Title', FontSize=60)
You can also set your own defaults for the session, e.g.,
set(0, 'DefaultAxesFontSize', 14);
set(0, 'DefaultAxesTitleFontSizeMultiplier', 2.5);
set(0, 'DefaultTextFontSize', 14);
set(0, 'DefaultLegendFontSize', 14);
set(0, 'DefaultColorbarFontSize', 14);
figure; plot(1:5); title('Plot Title')

More Answers (0)

Products


Release

R2025b

Community Treasure Hunt

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

Start Hunting!