Fractions inside a legend

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

It worked fine for me in 2018 b version , which release are you using?
MATLAB Version: 9.3.0.713579 (R2017b)
MATLAB License Number: 31
Operating System: Mac OS X Version: 10.13.6 Build: 17G5019
Java Version: Java 1.8.0_121-b13 with Oracle Corporation Java HotSpot(TM) 64-Bit Server VM mixed
It worked for me as well (R2019a).
Try this:
hl = legend('External Force','Net Force', '$F = \frac{1}{3}$');
set(hl ,'Interpreter','latex')
worked perfectly thank you very much
My pleasure.
actually 1 more question...if i want to make it - 1/3 what do i do ?

Sign in to comment.

Answers (1)

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.

Asked:

on 7 Apr 2019

Commented:

on 7 Apr 2019

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!