[Tex/LaTex] symbol for “less than, equal to, or greater than”?

math-mode

I am trying to find a symbol for "less than, equal to, or greater than" similar to this:

enter image description here

I have not been able to find one. If anyone knows of such a command, please let me know.

Thank you

Best Answer

Here are the possibilities with amssymb:

\documentclass{article}
\usepackage{amssymb}

\begin{document}

\[ A\gtreqqless B, \quad A\lesseqqgtr B\]%
\[ A\gtreqless B\quad A\lesseqgtr B\]%
\[ A\gtrless B\quad A\lessgtr B\]%

\end{document} 

enter image description here