how to unify LaTex font and default font in plot

조회 수: 41 (최근 30일)
Maggie liu
Maggie liu 2021년 7월 7일
댓글: Maggie liu 2021년 7월 14일
How can I make sure that the fonts in my plot is the same?
I would like to have everything be in Heventica (or at least everything without math symbols be in Heventica), but once I use 'interpreter','latex', everything inside will become Times. Is there a way to either change the font of latex script, or have math symbols font be seperated from normal text?
This is what I have now
title('some title')
xlabel('$\int L_{data} - L_{sim}$','Interpreter','latex')
ylabel('Normalized counts')

채택된 답변

Tanay Gupta
Tanay Gupta 2021년 7월 13일
편집: Tanay Gupta 2021년 7월 13일
Hi @Maggie liu, according to my understanding setting the default font to Helvetica does not influence the font used by the 'latex' interpreter. It isn't possible to specify Helvetica as the font for the LaTeX interpreter.
Since you mentioned that you would like to separate math symbols from text, you can use the following code for the same.
fontname = 'Helvetica ';
set(0,'defaultaxesfontname',fontname);
x = [2 4 7 2 4 5 2 5 1 4];
bar(x);
saveas(gcf,'Barchart','epsc')
label2 = '\int L_{data} - L_{sim}';
xlabel(label2);
ylabel('This is my y-label');
I hope it helps.

추가 답변 (0개)

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by