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
madhan ravi
2019년 4월 7일
It worked fine for me in 2018 b version , which release are you using?
Vincent Kavanagh
2019년 4월 7일
Star Strider
2019년 4월 7일
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
2019년 4월 7일
Star Strider
2019년 4월 7일
My pleasure.
Vincent Kavanagh
2019년 4월 7일
답변 (1개)
Star Strider
2019년 4월 7일
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.
카테고리
도움말 센터 및 File Exchange에서 Legend에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!