I want to write a math equation that needs power of dots. I tried these code
{2^{2^{2^{\ddots^{2}}}}}
But the dots needs to be rotated
I want to write a math equation that needs power of dots. I tried these code
{2^{2^{2^{\ddots^{2}}}}}
But the dots needs to be rotated
Adapted from The TeXbook, Exercise 18.45:
\def\rddots#1{\cdot^{\cdot^{\cdot^{#1}}}}
$ 2^{2^{\rddots2}} $
\bye

\adots for U+022F0, but I don't think it's available with mathjax (nor if it's the appropriate glyph for this). If mathjax understands different math styles, you could try the more explicit definition: \def\rddots#1{{\scriptstyle\cdot}^{{\scriptstyle\cdot}^{{\scriptstyle\cdot}^{#1}}}}
– morbusg
Jan 26 '14 at 09:06
\def\sadots{{\scriptstyle\char"22F0\relax}} (note that there is no family or class definitions, so for use just in this context).
– morbusg
Jan 26 '14 at 09:12
An easy way would be to replace \ddots by \udots from the MnSymbol package, or \iddots from mathdots (better rendering in math mode).

\usepackage{MnSymbol} in your preamble. Still, I'd recommend using \iddots instead.
– chl
May 07 '11 at 08:11
mathdots in the package texlive-generic-extra
– loved.by.Jesus
May 18 '20 at 12:31
you could try (with 5 dots for the fun of it!):
\[
{2^{2^{2^{\mathstrut^{.^{.^{.^{.^{.^{\raisebox{-.5\height}{$\scriptscriptstyle
2$}}}}}}}}}}}
\]
\[
{2^{2^{2^{\mathstrut^{.^{.^{.^{.^{.^{\raisebox{-.25\height}{$\scriptscriptstyle
2$}}}}}}}}}}}
\]
or the simpler
\[
{2^{2^{2^{\mathstrut^{.^{.^{.^{\raisebox{-.25\height}{$\scriptscriptstyle
2$}}}}}}}}}
\]
\[
{2^{2^{2^{\mathstrut^{.^{.^{.^{2}}}}}}}}
\]
they give (respectively):

\mathstrut is to put the first dot higher than where it would fall otherwise. One could fine-tune that positioning if needed.
–
May 07 '11 at 12:55
\iddotsfrom mathdots. Could prove easier indeed to rotate slightly\iddotsthan a lot\ddots, and perhaps actually\iddotsalready quasi solves your problem. – May 07 '11 at 11:28