How to use not less than(≮) symbol in LaTeX?

Symbol/UnicodeNot Less Than/U+226E
Type of symbolMathematics
Package (requirement)amssymb
ArgumentNo
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 :

Using Not Less Than symbol in latex.

Leave a Comment

Your email address will not be published. Required fields are marked *

Scroll to Top