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?

 Respuesta aceptada

Matt J
Matt J el 11 de Dic. de 2025
Editada: Matt J el 12 de Dic. de 2025
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')

Más respuestas (0)

Categorías

Productos

Versión

R2025b

Etiquetas

Preguntada:

el 11 de Dic. de 2025

Editada:

el 12 de Dic. de 2025

Community Treasure Hunt

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

Start Hunting!

Translated by