Is there a way to get a 'less than or equal to' symbol in to a text document?
59 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Eric Pulling
il 2 Ott 2017
Commentato: madhan ravi
il 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 Commenti
Risposta accettata
ANIL LAMICHHANE
il 6 Nov 2020
I think it should be
text(.4,.4,'$3 \leq 4$','interpreter','latex')
Source:
4 Commenti
Walter Roberson
il 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
Più risposte (2)
Bruno Luong
il 6 Nov 2020
Modificato: Bruno Luong
il 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 Commenti
Vedere anche
Categorie
Scopri di più su Symbolic Math Toolbox in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!