Adjust subscript style / height
Mostra commenti meno recenti
Hi all,
I'm trying to get 'neat' subscripts in the axes labels of a plot. I'd like to use the standard tex interpreter, as most of my figures are already using it, but the subscript style doesn't look good IMO:

I'd like the subscripted 'n' to not be completely below the 't' but rather have its upper end somewhere close to the t's middle.
Changing the interpreter to latex does exactly what I want, but it changes the font not only of the characters in question, but of the whole axis label as well as putting it in cursive:

Is there any way to adjust the subscript's height with the tex interpreter?
Best regards
Sebastian
1 Commento
Sebastian Sprunck
il 9 Ott 2019
Risposta accettata
Più risposte (2)
wang
il 7 Apr 2021
You can get roman or italic using \mathrm{} or \mathit{} respectively. And you can use both \mathrm{} and \mathit{} to get the effect of both regular and italic
figure
text(0.1,0.5,'$\mathrm{A_n}$','FontSize',16,'Interpreter','latex')
text(0.2,0.5,'$\mathit{A_n}$','FontSize',16,'Interpreter','latex')
text(0.3,0.5,'$\mathrm{A} \mathit{_n}$','FontSize',16,'Interpreter','latex')

Muhammad Usman
il 6 Ott 2019
use the following after the plot command
xlabel("y_{" + n + "}", 'Interpreter', 'tex') %for alphabet
and
xlabel(" \Omega_{" + n + "}", 'Interpreter', 'tex') %for special charcters
more more details please have look to this link:
1 Commento
Sebastian Sprunck
il 6 Ott 2019
Categorie
Scopri di più su Annotations in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
