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!