How do I get a new line with the TEXT function using TeX formatting in MATLAB 7.2 (R2006a)?
조회 수: 22 (최근 30일)
이전 댓글 표시
I want to use TeX formatting in the TEXT function to write text on a second line in my graph.
채택된 답변
MathWorks Support Team
2009년 6월 27일
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
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Labels and Annotations에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!