Symbol/Unicode | Less-Than or Slanted Equal To/U+2A7D |
---|---|
Type of symbol | Mathematical operator |
Package (requirement) | amssymb |
Argument | No |
Latex command | \leqslant |
Example | \leqslant → ⩽ |
You need to use the \leqslant
command of the amssymb package to print the Less-Than or Slanted Equal To symbol in a Latex document.
\documentclass{article}
\usepackage{amssymb}
\begin{document}
$$ X \leqslant -3 $$
$$ X \leqslant 8 $$
\end{document}
Output :