How to include a script letter in matlab figure label
fonts, latex, matlab, matlab-figure, tex
Solution
Matlab's LaTeX interpreter doesn't seem to recognize `\mathscr`. But it accepts `\mathcal`:
ylabel('$\mathcal{T}$','Interpreter','LaTeX','Fontsize',12)
Problem
I want to include a script English letter, say `\mathscr{T}` in the Y-axis label in a Matlab figure. Is there an easy way to do this? Thank you.