Is there a way to get a 'less than or equal to' symbol in to a text document?
136 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Eric Pulling
am 2 Okt. 2017
Kommentiert: madhan ravi
am 6 Nov. 2020
I'm unable to find the correct code to get a 'less than or equal to' symbol in to a text document?
0 Kommentare
Akzeptierte Antwort
ANIL LAMICHHANE
am 6 Nov. 2020
I think it should be
text(.4,.4,'$3 \leq 4$','interpreter','latex')
Source:
4 Kommentare
Walter Roberson
am 6 Nov. 2020
- 3 \le 4 =>
- 3 \leq 4 =>
Ah, they are synonyms apparently: https://tex.stackexchange.com/questions/182620/why-does-leq-show-up-as-le
Weitere Antworten (2)
Bruno Luong
am 6 Nov. 2020
Bearbeitet: Bruno Luong
am 6 Nov. 2020
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 Kommentare
Siehe auch
Kategorien
Mehr zu Characters and Strings finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!