how to set x-axis and y-axis of a plot as log scales in bold with latex interpreter?
Mostra commenti meno recenti
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.
Risposte (2)
Thomas Ferriday
il 17 Nov 2023
Spostato: madhan ravi
il 17 Nov 2023
I had the same issue. A temporary solution (far from robust) is to specify the names on the x- or y-axis as such:
set(gca,'YTick',[1 2 3],'YTickLabel',{'\bfseries{1}','\bfseries{2}','\bfseries{3}'}...
,'FontSize',17,'FontName','Times','FontAngle','Italic'...
,'TickLabelInterpreter','Latex','FontWeight','Bold')
Not the most elegant solution, but it works.
1 Commento
Dylan
il 19 Nov 2024
Late to this, but works and is a good solution. Thanks!
Yongjian Feng
il 9 Feb 2022
How about these:
ax = gca;
ax.XAxis.FontWeight='bold';
ax.XAxis.Scale = 'log';
4 Commenti
SismoPlotter
il 9 Feb 2022
Yongjian Feng
il 9 Feb 2022
You don't need latex if you do it this way. Follow my suggestion above.
SismoPlotter
il 9 Feb 2022
Walter Roberson
il 19 Nov 2024
FontWeight is ignored when Interpreter is Latex
Categorie
Scopri di più su Axis Labels in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!