superscript and subscript for figure 'name'
5 次查看(过去 30 天)
显示 更早的评论
Dear All, Can somebody tell me how to write alphanumeric superscript and subscript in figure property 'name'.
i want to write abc^{2} and abc_{1}
I have tried figure('name','abc^{2}abc_{1});
But ^,{,},_ appears in the screen instead of superscript and subscript...
can somebody help...
thanks in advance...
2 个评论
Jan
2017-6-29
@srinivas: Please open a new thread for a new question. Then mention, where the text should appear. It matters if it is the figure title, a uicontrol or a text object.
回答(3 个)
Jan
2012-11-27
There is no LaTeX interpreter for the figure name.
But depending on the used font, you can use Unicode characters for ^{2}^and ^{3}:
e²
This is "U+00B2" and can be reached on a Windows keyboard by Alt+0178. But I do not know a method for _{1} and if the users changes the screen font, you might get strange characters. Therefore I would avoid special characters in the name of the figure, which appears in the winfow border. It is much better to write such detailed information in the figure's content, e.g. using title() or text().
0 个评论
IISc geetha
2012-11-27
3 个评论
Matt Fig
2012-11-27
IISc, what is confusing here? Jan has told you twice that there is no command to write so that you can get what you want.
Thierry Dalon
2013-9-19
编辑:Thierry Dalon
2013-9-19
Copy/paste the upperscript character:
figure('Name','SHM²');
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Graphics Object Properties 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!