How can I change the fontface of a text within a plot

328 visualizaciones (últimos 30 días)
jjlivestrong
jjlivestrong el 30 de Sept. de 2012
Comentada: Image Analyst el 27 de En. de 2024
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 comentarios
shumaila
shumaila el 27 de En. de 2024
How can I adjust font as bold?
Image Analyst
Image Analyst el 27 de En. de 2024
@shumaila did you try
set(gca, 'FontWeight', 'bold')

Iniciar sesión para comentar.

Respuesta aceptada

Walter Roberson
Walter Roberson el 30 de Sept. de 2012
Editada: Walter Roberson el 7 de Abr. de 2018
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."

Más respuestas (2)

Matt Fig
Matt Fig el 30 de Sept. de 2012
get(gca,'fontname') % shows you what you are using.
set(gca,'fontname','times') % Set it to times

Image Analyst
Image Analyst el 30 de Sept. de 2012
Editada: Image Analyst el 30 de Sept. de 2012
For example:
text(.10,.2, 'Hello World', 'FontName', 'Impact', 'FontSize', 40, 'Color', [.5 0 1]);
Should work with title(), xlabel(), and ylabel() also.

Categorías

Más información sobre Axis Labels en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by