How can I write different subscription font type of label?
4 views (last 30 days)
Show older comments
JunYoung Noh
on 19 Dec 2019
Commented: Patrick Laux
on 16 Jul 2020
Like figure below, I want to write phi and CH4 for diffrent font type.
(phi should be Italic but CH4 should not. & CH4 must be a subscription of phi)
How can i do this?
0 Comments
Accepted Answer
Lucademicus
on 19 Dec 2019
Edited: Lucademicus
on 20 Dec 2019
You can achieve that by using a underscore _, following what you'd want subscripted. You can group something by placing it within curly brackets.
In this case:
xlabel('\phi_{CH_4}')
If you want a longer subscript, you should place that subscript also within curly brackets:
xlabel('\phi_{D_{solid}}')
2 Comments
Lucademicus
on 20 Dec 2019
I've editted my answer and included screenshots. Lowercase \phi is italic.
More Answers (2)
Patrick Laux
on 16 Jul 2020
Hi,
interestingly, subscripting does not work in combination with the boxplot function.
Any help appreciated.
A=rand(100,1)
boxplot(A)
set(gca, 'XTickLabel', {'test_{hey}'})
1 Comment
Patrick Laux
on 16 Jul 2020
ah okay, I found it:
you have to specifiy latex interpreter
set(gca,'TickLabelInterpreter', 'tex');
See Also
Categories
Find more on Annotations in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!