在符号下方显示箭头

在符号下方显示箭头

这可能很容易回答,但是我如何在代码中获取该图像?

在此处输入图片描述

我有类似这样的事情:

\begin{gathered}
    A=(\circ, \bullet, \bullet).\\
\underset{\text { Position } 1}{\uparrow}
\end{gathered}

但我对此并不满意。有什么想法吗?

答案1

您可以\underset与将文本放置在零宽度框中的命令一起使用,但可以相对于箭头移动它。

第一个参数\showpos是箭头左侧宽度的分数。

\documentclass{article}
\usepackage{amsmath}

\newcommand{\showpos}[2]{% #1 = factor, #2 = text
  \makebox[0pt]{%
    \scriptsize
    \begin{tabular}{@{}c@{}}
      $\uparrow$ \\
      \makebox[\dimexpr#1\width*2\relax][l]{#2}%
    \end{tabular}%
  }%
}

\begin{document}

\[
A=(\underset{\showpos{0.3}{Position 1}}{{\circ}},{\bullet},{\bullet})
\]

\[
A=({\circ},\underset{\showpos{0.5}{Position 2}}{{\bullet}},{\bullet})
\]

\[
A=({\circ},{\bullet},\underset{\showpos{0.7}{Position 3}}{{\bullet}})
\]

\end{document}

根据整个公式,需要进行一些视觉格式化。

在此处输入图片描述

相关内容