Legend with different text color and Latex Interpreter

51 visualizaciones (últimos 30 días)
K3iTH
K3iTH el 24 de Mzo. de 2020
Editada: dpb el 25 de Mzo. de 2020
Hi everyone,
I have a legend with different text color, and I wanted to apply Latex markup.
I have the code shown below and it is working. However, when I set the Interpreter to be Latex, it doesn't work at all.
Is there any mistake I have made?
l=legend('\color[rgb]{0.9 0.9 0.9} S=0.8, AR=0.25');
%% set the Interpreter to be Latex
set(l, 'Interpreter', 'latex')
  1 comentario
dpb
dpb el 24 de Mzo. de 2020
From the doc on 'Interpreter' property linked to from text documetation:
LaTeX Markup
To use LaTeX markup, set the Interpreter property to 'latex'. Use dollar symbols around the text, for example, use '$\int_1^{20} x^2 dx$' for inline mode or '$$\int_1^{20} x^2 dx$$' for display mode.
The displayed text uses the default LaTeX font style. The FontName, FontWeight, and FontAngle properties do not have an effect. To change the font style, use LaTeX markup.

Iniciar sesión para comentar.

Respuestas (1)

Stijn Haenen
Stijn Haenen el 24 de Mzo. de 2020
Editada: Stijn Haenen el 24 de Mzo. de 2020
I dont think it is possible to change the color with the latex interpreter. It can be used to make text bold for example and insert symbols. i would change the color like this:
legend('\textbf{test}','TextColor',[0 1 0],'Interpreter','latex');
  2 comentarios
K3iTH
K3iTH el 24 de Mzo. de 2020
Hi there,
This is working even without
\textbf
However, my legend has 9 inputs and 6 of them need to be in grey and the rest will be in black color. That is not working anymore if I input more than 1.
Thanks
dpb
dpb el 24 de Mzo. de 2020
Editada: dpb el 25 de Mzo. de 2020
"... legend has 9 inputs and 6 of them need to be in grey and the rest will be in black color. That is not working ... if I input more than 1."
'TextColor' is a single global property for the legend handle, there isn't the facility to have multiple values for a single property.
And, there's no facility to add more than a single legend to a figure/axes so you're stuck on that one.
An alternative would be to use annotation or text objects to write the strings, not legend

Iniciar sesión para comentar.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by