how to set x-axis and y-axis of a plot as log scales in bold with latex interpreter?

29 vues (au cours des 30 derniers jours)
I would like to set the axis numbers of a plot in bold in latex font using the log scale.
I can set the axis numbers bold in latex font, but without using the log scale. When using the log scale setting, the bold setting is not taken into account.
ax = gca;
ax.XAxis.TickLabelInterpreter = 'latex';
ax.XAxis.TickLabelFormat = '\\textbf{%g}';
ax.XAxis.Scale = 'log';
Here is the code I am trying to use.

Réponses (1)

Yongjian Feng
Yongjian Feng le 9 Fév 2022
How about these:
ax = gca;
ax.XAxis.FontWeight='bold';
ax.XAxis.Scale = 'log';
  3 commentaires
SismoPlotter
SismoPlotter le 9 Fév 2022
But then, do you have a way to convert the font into latex? Sorry if there was some misunderstanding, but the latex font is a requirement for me.

Connectez-vous pour commenter.

Catégories

En savoir plus sur Printing and Saving dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by