Question about latex interpreter for title and legend of matlab plot
6 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Vivian
el 5 de Nov. de 2016
Comentada: Star Strider
el 5 de Nov. de 2016
I want to know why it show error . script under is in Matlab environment. Thank you for advance.
plot(rand(3));
title('Angle=20^{\circ} - V=75{\km\per\hour}','Interpreter','latex');
lgd = legend('p1','p2','p3','Location','northwest','Interpreter','latex');
0 comentarios
Respuesta aceptada
Star Strider
el 5 de Nov. de 2016
The legend function does not allow you to set the interpreter as one of the main arguments. You have to return a handle to it, and then use that to set the interpreter:
lgd = legend('p1','p2','p3','Location','northwest');
set(lgd,'Interpreter','latex')
2 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Line Plots en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!