How to change font in legend while using latex interpreter
36 次查看(过去 30 天)
显示 更早的评论
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
0 个评论
采纳的回答
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 个评论
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Legend 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!