I am trying to find a symbol for "less than, equal to, or greater than" similar to this:
I have not been able to find one. If anyone knows of such a command, please let me know.
Thank you
I am trying to find a symbol for "less than, equal to, or greater than" similar to this:
I have not been able to find one. If anyone knows of such a command, please let me know.
Thank you
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}
Here are two possibilities using \usepackage[T1]{fontenc} or \usepackage{amssymb}:
\documentclass{article}
\usepackage[T1]{fontenc}
\usepackage{amssymb}
\begin{document}
\centering
$\theta_{nc}^D < \theta^D$\\
$\theta_{nc}^D > \theta^D$\\
$\theta_{nc}^D = \theta^D$\\
$\theta_{nc}^D \leq \theta^D$\\
$\theta_{nc}^D \geq \theta^D$\\
$\theta_{nc}^D\lesseqqgtr \theta^D$
\end{document}
\usepackage{ amssymb } \lesseqqgtr:) – uzsolt Dec 03 '18 at 04:44