I have an existing figure that I want to use this term $\textit{w} = 0$ in its legend. I'm setting the latex interpreter using set(findall(gcf,'defaulttextInterpreter','latex ')) but I keep getting this error Warning: Unable to interpret TeX string "$\textit{w}$ = 1,k=1" any help would be appreciated.

 채택된 답변

Matt J
Matt J 2018년 1월 16일

0 개 추천

Try setting the interpreter directly,
set( legend('$\textit{w}$ = 1,k=1') , 'Interpreter','latex');

댓글 수: 3

Matt J
Matt J 2018년 1월 16일
Alternatively,
set(findall(gcf,'Interpreter','tex'),'Interpreter','latex ')
Matt J
Matt J 2018년 1월 16일
Diana's comment moved here:
Thanks.
Matt J
Matt J 2018년 1월 16일
You're welcome.

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

추가 답변 (0개)

카테고리

태그

질문:

2018년 1월 16일

댓글:

2018년 1월 16일

Community Treasure Hunt

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

Start Hunting!

Translated by