Symbol/Unicode | Greater than or less than/U+2277 |
---|---|
Type of symbol | Mathematical operator |
Package (requirement) | amssymb |
Argument | No |
Latex command | \gtrless |
Example | \gtrless → ≷ |
You need to use the \gtrless
command of the amssymb package to print the Greater than or less than symbol in a latex document.
\documentclass{article}
\usepackage{xcolor, amssymb}
\begin{document}
$$ a+b \gtrless -5 $$
$$ x+y \gtrless 8 $$
\end{document}
Output :