How to change font in legend while using latex interpreter

조회 수: 72 (최근 30일)
Marc Laub
Marc Laub 2021년 1월 14일
편집: Cris LaPierre 2021년 1월 15일
Hey,
I needed a fraction bar in my legend, so I used latex as interpreter, but now the legend font is in the default tex math font and not matlab default helvetica which is the font of all my other figures. How do I change the font back to helvetica when using latex as interpreter? I cant change it manually since in the figure editor the font of the legend is helvetica even if it is clearly not, the interpreter seems to overwrite this seeting.
l=legend('$\displaystyle\frac{max\:grain\:diameter}{number\:weighted\:mean\:grain\:diameter}$','interpreter','latex');
set(l, 'FontName', 'Helvetica')
also does not work.
l=legend('$\mathsf{\frac{max\,\,grain\,\,diameter}{number\,\,weighted\,\,mean\,\,grain\,\,diameter}}$','interpreter','latex');
is kind of ok, but somehow some letters are shifted into each other.
Is there a way to do so and if so how?
Best regards

채택된 답변

Cris LaPierre
Cris LaPierre 2021년 1월 15일
편집: Cris LaPierre 2021년 1월 15일
It does not appear to be possible to change the font. You can get roman or italic using \mathrm{} or \mathit{} respectively.
I did rebuild your expression using the equation editor in the live editor then copied the LaTeX. This was just to be sure I was using LaTeX the interpreter recognizes. This is created using the result and \mathrm{}.
plot(rand(1,10),'.')
legend('$\frac{\mathrm{max}\;\mathrm{grain}\;\mathrm{diameter}}{\mathrm{number}\;\mathrm{weighted}\;\mathrm{mean}\;\mathrm{grain}\;\mathrm{diameter}}$','Interpreter',"latex")
  댓글 수: 3
Cris LaPierre
Cris LaPierre 2021년 1월 15일
Perhaps this post can prove helpful?
Marc Laub
Marc Laub 2021년 1월 15일
nope, have tried it out, doesnt work. I also get the warning, but it I ignore it, mathsf is the closest I get to helvetica

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Legend에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by