MATLAB: Static Text GUI gui Is there any way to put more than just regular text in a static text box, such as subscripts, superscripts or texts like x ̇ <== (x dot). Best Answer Are you referring to text() or to uicontrol with style text?For text, you can use use tex or latex; see the example under the Interpreter property hereFor uicontrols, you can use HTML on a per-line basis, such as <HTML>Γ2 Related QuestionHow to add a superscript to a uicontrolChange the font of a text edit box using checkbox in guiHow to subscript/superscript a Symbol::accentDot(m) or Symbol(“nu”)GUIDE edit textHow to write subscript in static text in a GUI
Best Answer