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 \lland this should be in mathmode.

\documentclass{article}
\begin{document}

$\ll$

\end{document}

Output:

much smaller than or much less than symbol in LaTeX

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:

much greater than symbol in LaTeX

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:

very much less than and very much greater than symbol

Leave a Reply

Your email address will not be published. Required fields are marked *