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?

 채택된 답변

Matt J
Matt J 2025년 12월 11일
편집: Matt J 2025년 12월 12일

0 개 추천

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')

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Creating, Deleting, and Querying Graphics Objects에 대해 자세히 알아보기

제품

릴리스

R2025b

질문:

2025년 12월 11일

편집:

2025년 12월 12일

Community Treasure Hunt

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

Start Hunting!

Translated by