答案1
答案2
一种方法是matrix
按照包中的定义使用amsmath
:
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\[
\begin{matrix}
A + B \\
B + C \\
\vdots \\[3pt]
Y + Z
\end{matrix}
\]
\end{document}
或者array
(基于从已删除的@campa 答案中窃取的最后一个解决方案):
\documentclass{article}
\begin{document}
\[
\begin{array}[t]{r@{\:}c@{\:}l}
A & + & B \\
B & + & C \\
& \vdots & \\[3pt]
Y & + & Z \\
\end{array}
\]
\end{document}
在这种特殊情况下,结果与以前类似,但是,现在 + 左右两侧的项可以有不同的长度,但数学表达式仍然以 + 符号为中心。