Interpreter latex label problem
조회 수: 9 (최근 30일)
이전 댓글 표시
Hi,
I used these codes for ylabel, but it does not work:
h1 = ylabel(['$R_m_a_x/A_0$'])
set(h1,'Interpreter','latex','fontsize',15)
any help please
Thanks in advance!
댓글 수: 0
채택된 답변
infinity
2019년 7월 22일
Hello,
The error come from the typing of latex syntax.
You should change a bit in your latex, for example
ylabel('$R_{{m}_{{a}_{x}}}/A_0$','Interpreter','latex')
It might work.
댓글 수: 3
infinity
2019년 7월 22일
Hello,
So, you could change a bit like this
ylabel('$R_{max}/A_0$','Interpreter','latex')
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 LaTeX에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!