Symbol/Unicode | Not Greater Than/U+226F |
---|---|
Type of symbol | Mathematics |
Package (requirement) | amssymb |
Argument | No |
Latex command | \ngtr |
Example | \ngtr → ≯ |
You need to use the \ngtr
command of the amssymb package to print the Not Greater Than symbol in a latex document. Below are some examples.
\documentclass{article}
\usepackage{amssymb}
\begin{document}
$$ ABC \ngtr 8 $$
$$ XYZ \ngtr \frac{5}{6} $$
$$ ABC \ngtr \frac{a+b}{c} $$
\end{document}
Output :