Much less than (≪) and much greater than (≫) symbol in LaTeX
In this tutorial, I will show you how to write much less than and much greater than symbols in LaTeX.
We will first check what people generally do when dealing with much less than and much greater than symbol in their LaTeX doc.
Then, we will try to find some other ways to do the same.
Much less or much smaller than symbol
The command is \ll
and this should be in mathmode.
\documentclass{article} \begin{document} $\ll$ \end{document}
Output:
Much greater than symbol
In LaTex, if you want to write this symbol then the command id \gg
and this should be in math mode.
\documentclass{article} \begin{document} $\gg$ \end{document}
Output:
Very much less than and very greater than Symbol in LaTeX
\documentclass{article} \usepackage{amssymb} \begin{document} x$\lll$y and b$\ggg$c \end{document}
Output:
Leave a Reply