Latex interpreter with sentences and symbols

조회 수: 458 (최근 30일)
Aparicio Nieto
Aparicio Nieto 2017년 7월 24일
댓글: Aparicio Nieto 2017년 7월 25일
I use latex interpreter when add labels to my plots and no problem appears when I write whole sentences without symbols or only symbols; however, when I try to combine them, there is no error, but neither does it work. Does anyone have any idea of how it could be fixed? I tried typing $$ instead of just $, but still that way. Thank you in advance.
  댓글 수: 2
Walter Roberson
Walter Roberson 2017년 7월 24일
Could you give a brief example?
Aparicio Nieto
Aparicio Nieto 2017년 7월 24일
Yes, when I try Matlab to write the title with the Latex font, I do not now why, but it does not work; however, the axis labels are correctly intrepeted and the command works perfectly. I am afraid it is related to the use of sentences and symbols simultaneously, just as I did in the title, so I am wondering if there is a way to 'tell' Matlab what I want.
title('$Ratio Energético \Gamma$','fontsize',14,'interpreter','latex')
xlabel('$f/f_{ref}$','fontsize',14,'interpreter','latex')
ylabel('$\Gamma$','fontsize',14,'interpreter','latex')
Thanks you very much.

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

채택된 답변

Robert U
Robert U 2017년 7월 25일
Hi Aparicio Nieto,
as I see the latex interpreter cannot interpret your title command. The "$"-signs indicate a math-environment where you could write formulas. Plain text can be written as is:
figure;
axes
title('Ratio Energ\''etico $\Gamma$','fontsize',14,'interpreter','latex')
xlabel('$f/f_{ref}$','fontsize',14,'interpreter','latex')
ylabel('$\Gamma$','fontsize',14,'interpreter','latex')
Kind regards,
Robert Uhlig
  댓글 수: 1
Aparicio Nieto
Aparicio Nieto 2017년 7월 25일
I will try it as soon as possible, thank you very much

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

추가 답변 (0개)

Community Treasure Hunt

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

Start Hunting!

Translated by