指数塔中的旋转下支撑和上支撑

指数塔中的旋转下支撑和上支撑

我想排版一个指数塔,并有下支撑和上支撑以一定角度,文本旋转(例如,此处为“r”和“k”)。有相关问题,但我看到的都没有下括号以一定角度
指数塔

答案1

\documentclass{article}
\usepackage{stackengine,graphicx,amsmath}
\def\rdots{\rotatebox[origin=l]{29}{$\scriptscriptstyle\ldots\mathstrut$}}
\begin{document}
\stackinset{r}{-2.5pt}{b}{-6pt}{\tiny\rotatebox{29}{$\underbrace{\kern25pt}_k$}}{%
\stackinset{r}{4pt}{t}{-9.0pt}{\tiny\rotatebox{29}{$\overbrace{\kern15pt}^r$}}{%
  $a^{b^{c^{d^{\rdots^n}}}}$}}
\end{document}

在此处输入图片描述

相关内容