Adding superscript or subscript and special character in the same title on a figure
조회 수: 2 (최근 30일)
이전 댓글 표시
I tried to add a title on figure (french language) where the title contains special character and subscript:
> S = '\''Etat x_{1}';
>> title(S, 'interpreter', 'latex')
But I got \'Etat x_{1} rather than état x1 (Note: é is capital and 1 a subscript).
How can I overcome this problem?
댓글 수: 0
답변 (1개)
Walter Roberson
2018년 6월 15일
It appears that accents are only recognized in text mode, but that underscores are recognized in math mode. This leads to
S = '\''Etat x$_{1}$'
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Characters and Strings에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!