线性映射方程中的中心化 \vdots

线性映射方程中的中心化 \vdots

我正在尝试将垂直点居中,但似乎做不到——无论我尝试什么,这些点都保持左对齐。以下是我目前拥有的代码。任何帮助都将不胜感激:

\begin{align*}
    &T_0: V_0 \mapsto V_1 \\
    &T_1: V_1 \mapsto V_2 \\
    &T_2: V_2 \mapsto V_3 \\
    &\vdotswithin{\mapsto}\\
    &T_n: V_n \mapsto V_{n+1}
    \end{align*}

输出

答案1

这就是你所追求的吗?

\documentclass{article}
\usepackage{mathtools}
\usepackage{eqparbox}
\newcommand{\eqmathbox}[2][M] {\eqmakebox[#1]{$\displaystyle#2$}}

\begin{document}

  \begin{alignat*}{2}
 & T_0 & : V_0 & \mapsto V_1 \\
  & T_1 & : V_1 & \mapsto V_2 \\
  & \eqmathbox{T_2} & : V_2 & \mapsto V_3 \\[-1.25ex]
 & \eqmathbox{\vdots} & &\vdotswithin{\mapsto}\\[-0.5ex]
  & T_n & : V_n & \mapsto V_{n+1}
\end{alignat*}

\end{document} 

在此处输入图片描述

答案2

欢迎使用 TeX-SE!我认为您应该以不同的方式设置对齐点。(不会神奇地在其他行中\vdotswithin{\mapsto}搜索s 并对齐点,它只是将它们相对于相应大小的框居中。)\mapsto

\documentclass{article}
\usepackage{mathtools}
\begin{document}
\begin{align*}
    T_0: V_0 &\mapsto V_1 \\
    T_1: V_1 &\mapsto V_2 \\
    T_2: V_2 &\mapsto V_3 \\
    &\vdotswithin{\mapsto}\\
    T_n: V_n &\mapsto V_{n+1}
\end{align*}
\end{document}

在此处输入图片描述

相关内容