Inverse Diagonal three dots symbol in LaTeX

In this tutorial, I will show how to get the inverse diagonal three dots symbol in LaTeX with multiple packages.

To get the inverse diagonal three dots in LaTeX, you can use the \ddots command as an argument in \reflectbox{<arg>} command. In this case, you have to load the graphicx package in the preamble.

\documentclass{article}
\usepackage{graphicx}
\begin{document} 

   $$ \verb|\reflectbox{$\ddots$}| \rightarrow \reflectbox{$\ddots$} $$
   $$ {2^{2^{2^{\reflectbox{$\ddots$}^{2}}}}} $$

\end{document}

Output:

 $$ \verb|\reflectbox{$\ddots$}| \rightarrow \reflectbox{$\ddots$} $$ $$ {2^{2^{2^{\reflectbox{$\ddots$}^{2}}}}} $$

Other packages to get inverse diagonal dots

Multiple packages provide commands to get different styles of this symbol. I listed all of them.

PackageCommandOutput
graphicx\reflectbox{$\ddots$}\reflectbox{$\ddots$}
MnSymbol\udots\udots
fdsymbol\udots\udots
stix\adots\adots
mathdots\iddots\iddots
yhmath\adots\adots

Let’s try some packages.

\documentclass{article}
\usepackage{MnSymbol}
\usepackage{mathdots}
\usepackage{yhmath}
\begin{document} 

   With \texttt{MnSymbol} package:
   $$ {2^{2^{2^{\udots^{2}}}}} $$

   With \texttt{mathdots} package:
   $$ {2^{2^{2^{\iddots^{2}}}}} $$

   With \texttt{yhmath} package:
   $$ {2^{2^{2^{\adots^{2}}}}} $$

\end{document}

Output:

inverse diagonal three dots symbol with other packages.

Leave a Reply

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