Borrar filtros
Borrar filtros

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

107 visualizaciones (últimos 30 días)
I'm unable to find the correct code to get a 'less than or equal to' symbol in to a text document?

Respuesta aceptada

ANIL LAMICHHANE
ANIL LAMICHHANE el 6 de Nov. de 2020
I think it should be
text(.4,.4,'$3 \leq 4$','interpreter','latex')
Source:
  4 comentarios

Iniciar sesión para comentar.

Más respuestas (2)

Walter Roberson
Walter Roberson el 2 de Oct. de 2017
text(.4,.4,'$3 \le 4$','interpreter','latex')

Bruno Luong
Bruno Luong el 6 de Nov. de 2020
Editada: Bruno Luong el 6 de Nov. de 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')

Categorías

Más información sobre String Parsing en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by