Fractions inside a legend
Show older comments
Hi , i am trying to write a fraction 1/3 in a legend.
Please see my attemtp and the resulting legend. please help
legend('External Force','Net Force', '$F = \frac{1}{3}$','Interpreter','latex')
6 Comments
madhan ravi
on 7 Apr 2019
It worked fine for me in 2018 b version , which release are you using?
Vincent Kavanagh
on 7 Apr 2019
Star Strider
on 7 Apr 2019
It worked for me as well (R2019a).
Try this:
hl = legend('External Force','Net Force', '$F = \frac{1}{3}$');
set(hl ,'Interpreter','latex')
Vincent Kavanagh
on 7 Apr 2019
Star Strider
on 7 Apr 2019
My pleasure.
Vincent Kavanagh
on 7 Apr 2019
Answers (1)
Star Strider
on 7 Apr 2019
To put a negative sign in front of it, do this:
hl = legend('External Force','Net Force', '$F = -\frac{1}{3}$');
set(hl ,'Interpreter','latex')
If I understand correctly what you want to do.
Categories
Find more on Legend 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!