Different colors for different text in a single textbox

31 visualizaciones (últimos 30 días)
Mark Stone
Mark Stone el 24 de Dic. de 2022
Comentada: Walter Roberson el 28 de Mayo de 2025
Is it possible to have different colors for different text in a single text box?
For example,
1st line of text is black
2nd line of text is blue
3rd line of text is red.

Respuesta aceptada

Voss
Voss el 24 de Dic. de 2022
str = { ...
'\color{black}1st line of text', ...
'\color{blue}2nd line of text', ...
'\color{red}3rd line of text'};
t = text(0.5,0.5,str);
  4 comentarios
Keqin Xu
Keqin Xu el 28 de Mayo de 2025
What if I want to use more colors that don't even have a name?
Walter Roberson
Walter Roberson el 28 de Mayo de 2025
str = '\color[rgb]{0.1,0.8,0.95} Sample rgb text';
text(0.5,0.5,str)
Note that for this to work, the text() Interpreter property must be 'tex' (which is the default)

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Statistics and Machine Learning Toolbox en Help Center y File Exchange.

Etiquetas

Productos


Versión

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by