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?

채택된 답변

ANIL LAMICHHANE
ANIL LAMICHHANE 2020년 11월 6일
I think it should be
text(.4,.4,'$3 \leq 4$','interpreter','latex')
Source:
  댓글 수: 4

댓글을 달려면 로그인하십시오.

추가 답변 (2개)

Walter Roberson
Walter Roberson 2017년 10월 2일
text(.4,.4,'$3 \le 4$','interpreter','latex')

Bruno Luong
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')

카테고리

Help CenterFile Exchange에서 Characters and Strings에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by