Is there a way to get a 'less than or equal to' symbol in to a text document?
조회 수: 132 (최근 30일)
이전 댓글 표시
I'm unable to find the correct code to get a 'less than or equal to' symbol in to a text document?
댓글 수: 0
채택된 답변
ANIL LAMICHHANE
2020년 11월 6일
I think it should be
text(.4,.4,'$3 \leq 4$','interpreter','latex')
Source:
댓글 수: 4
Walter Roberson
2020년 11월 6일
- 3 \le 4 =>
- 3 \leq 4 =>
Ah, they are synonyms apparently: https://tex.stackexchange.com/questions/182620/why-does-leq-show-up-as-le
추가 답변 (2개)
Bruno Luong
2020년 11월 6일
편집: Bruno Luong
2020년 11월 6일
To keep standard font
text(.2,.2,['3 ' char(8804) ' 4'])
text(.3,.3,['3≤4 (default)']) % if your editor is configured to support unicode
text(.4,.4,'$3 \leq 4$ latex','interpreter','latex')
text(.5,.5,'3 \leq 4 tex','interpreter','tex')
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Characters and Strings에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!