等号下方居中点

等号下方居中点
\begin{document}

\begin{align*}
1+3=4 \\ 4+5=9 \\ 9+7=16 \\ 16+9=25
\end{align*}

我试图在这些等式下放置三个垂直点。我尝试使用\vdots,但失败了。我该如何解决这个问题?

答案1

不太清楚您想将点放在哪里(\vdots?)。

\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{align*}
  1+3&=4 \\
  4+5&=9 \\
  9+7&=16 \\
  16+9&=25 \\[-1ex]
  &\mathrel{
    \settowidth{\dimen0}{$=$}
    \hbox to \dimen0{\hss$\vdots$\hss}
  }
\end{align*}
\end{document}

Result

评论:

  • \mathrel确保等号等点周围的关系运算符的间距。

  • 测量等号的宽度,并将点放置在与等号相同宽度的水平框的中心。

  • [-1ex]之后\\稍微减少了垂直空间。

答案2

也许你想要\shortvdotswithin(需要mathtools):

\documentclass{article}
\usepackage{amsmath,mathtools}

\begin{document}

\begin{align*}
 1+3 &=  4 \\
 4+5 &=  9 \\
 9+7 &= 16 \\
16+9 &= 25 \\
     &\shortvdotswithin{=}
\end{align*}

\end{document}

enter image description here

答案3

您可以使用\overset\underset来实现此目的:

\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{align*}
1 + 3 &\overset{\dots} {=} 4 \\[2mm]
4 + 5 &\underset{\dots}{=} 9 \\[2mm]
9 + 7 &                 = 16 \\[2mm]
16+ 9 &                 = 25 
\end{align*}
\end{document}

result

相关内容