How can I place the \, _, or ^ characters in a text command?

965 ビュー (過去 30 日間)
MathWorks Support Team
MathWorks Support Team 2011 年 11 月 21 日
コメント済み: Walter Roberson 2020 年 5 月 3 日
I am using text commands: text, title, xlabel and ylabel, to label my plot. I want the ' \ ' (backslash) , ' _ ' (underscore) and ' ^ ' (caret) symbols to appear in the text, but whenever I place them in, it alters the text.
For example, typing ^t makes the "t" a superscript, _w makes "w" a subscript, and \theta makes a Greek character.
For instance, if I try to label my graph Experiment_6, the 6 is subscripted:
title('Experiment_6')

採用された回答

MathWorks Support Team
MathWorks Support Team 2011 年 11 月 21 日
MATLAB 5 introduced TeX characters for formatting text objects. The underscore character " _ " is interpreted by MATLAB as a subscript command. The backslash command " \" is interpreted by MATLAB to indicate that a TeX command is next. The caret character " ^" is interpreted by MATLAB as a superscript command.
In these examples, the interpreter is formatting the w as subscript, the t as superscript, and the \theta as a TeX command (which happens to draw the Greek letter Theta).
One way to bypass the interpreter and have the characters appear as typed, is to use the backslash character ( \ ) before the LaTeX command. For example:
\_w will make _w appear in your text
\^t will make ^t appear in your text
\\theta will make \theta appear in your text
Alternatively, you can set the "Interpreter" property of the text object to 'none'. For example:
title('Experiment_6','Interpreter','none')
or
t = title('Experiment_6')
set(t,'Interpreter','none')
To set the default Text 'Interpreter' property to 'none' so that no TeX character in a text string is interpreted at the root level, issue the following command:
set(0,'DefaultTextInterpreter','none')
For more information on TeX characters, refer to the following URL:
  2 件のコメント
Walter Roberson
Walter Roberson 2015 年 12 月 6 日
It is because the \ is special to sprintf() . You should use
old_cells = sprintf('Old cells: Y = %3.3f (X) \\^ %1.3f',coefs_old);
young_cells = sprintf('Young cells: Y = %3.3f (X) \\^%1.3f',coefs_young);
Walter Roberson
Walter Roberson 2020 年 5 月 3 日

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeLabels and Annotations についてさらに検索

製品

Community Treasure Hunt

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

Start Hunting!

Translated by