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

조회 수: 7 (최근 30일)
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.

답변 (2개)

Thomas Ferriday
Thomas Ferriday 2023년 11월 17일
이동: madhan ravi 2023년 11월 17일
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.

Yongjian Feng
Yongjian Feng 2022년 2월 9일
How about these:
ax = gca;
ax.XAxis.FontWeight='bold';
ax.XAxis.Scale = 'log';
  댓글 수: 4
SismoPlotter
SismoPlotter 2022년 2월 9일
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.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Save Run-Time Data from Simulation에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by