Symbol/Unicode | Not Less Than/U+226E |
---|---|
Type of symbol | Mathematics |
Package (requirement) | amssymb |
Argument | No |
Latex command | \nless |
Example | \nless → ≮ |
To print the Not Less Than symbol on a latex document, you need to use a package called amssymb. And in this package, there is a command \nless
by which you can easily print this symbol.
\documentclass{article}
\usepackage{amssymb}
\begin{document}
$$ a \nless 123 $$
$$ x \nless \frac{1}{2} $$
$$ n \nless \frac{a+b}{c} $$
\end{document}
Output :