Is there a way to get a 'less than or equal to' symbol in to a text document?

59 ビュー (過去 30 日間)
Eric Pulling
Eric Pulling 2017 年 10 月 2 日
コメント済み: madhan ravi 2020 年 11 月 6 日
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 件のコメント
Walter Roberson
Walter Roberson 2020 年 11 月 6 日
  • 3 \le 4 =>
  • 3 \leq 4 =>
madhan ravi
madhan ravi 2020 年 11 月 6 日
Thank you sir Walter

サインインしてコメントする。

その他の回答 (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 Center および File ExchangeSymbolic Math Toolbox についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by