How can I change the fontface of a text within a plot
321 次查看(过去 30 天)
显示 更早的评论
Quick question, can I change the font face on MATLABs plot to other not being Arial (At least I think the default style is Arial).
If I were to change it to Times New Roman, what must I do?
Can you please help?
4 个评论
采纳的回答
Walter Roberson
2012-9-30
编辑:Walter Roberson
2018-4-7
title() and *label() accept 'FontName' property/value pairs. You can also use a FontName property/value pair in an axes() call, or you can set() that.
Note that if you set() an axes fontname, then http://www.mathworks.com/help/matlab/ref/axes_props.html
"Note that MATLAB does not display the x-, y-, and z-axis labels in a new font until you manually reset them (by setting the XLabel, YLabel, and ZLabel properties or by using the xlabel, ylabel, or zlabel command). Tick mark labels change immediately."
0 个评论
更多回答(2 个)
Matt Fig
2012-9-30
get(gca,'fontname') % shows you what you are using.
set(gca,'fontname','times') % Set it to times
0 个评论
Image Analyst
2012-9-30
编辑:Image Analyst
2012-9-30
For example:
text(.10,.2, 'Hello World', 'FontName', 'Impact', 'FontSize', 40, 'Color', [.5 0 1]);
Should work with title(), xlabel(), and ylabel() also.
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Axis Labels 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!