How do I get a new line with the TEXT function using TeX formatting in MATLAB 7.2 (R2006a)?
21 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
I want to use TeX formatting in the TEXT function to write text on a second line in my graph.
Respuesta aceptada
MathWorks Support Team
el 27 de Jun. de 2009
To get a new line with TeX formatting, use “\newline” in the TEXT function.
Following is an example of how one can write two strings - “first line” and “second line”, on two different lines in the middle of an axes:
axes
text(0.5,0.5, '{first line \newlinesecond line}')
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Labels and Annotations 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!