对齐双映射函数

对齐双映射函数

我需要按照这个对齐方式来写这张地图。

地图对齐 我试过了,但是错了

   \begin{align*}
\psi\colon A&\longrightarrow& B(D) \\
T&\longmapsto&\hat{T} \\
&&  \hat{T}\colon D     &\longrightarrow        \mathbb{C}   \\ 
S          &&&\longmapsto      \hat{T}(S)
\end{align*}

谢谢

答案1

用于alignat设置另一个对齐点,然后嵌套aligned

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

\begin{document}

\begin{alignat*}{2}
\psi\colon A&\rightarrow {}&& B(D) \\
           T&\mapsto     {}&& \hat{T} \\
&&&\begin{aligned}
  \hat{T}\colon D &\rightarrow \mathbb{C}   \\
                S &\mapsto     \hat{T}(S)
\end{aligned}
\end{alignat*}

\end{document}

在此处输入图片描述

答案2

解决方案是alignedat嵌套在以下环境中 align

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

\begin{document}

\begin{align*}
\psi\colon A&\longrightarrow B(D) \\
T&\longmapsto \begin{alignedat}[t]{2} & \hat{T} \\
& \hat{T} & \colon D& \longrightarrow \mathbb{C} \\
 & & S& \longmapsto \hat{T}(S)
\end{alignedat}
\end{align*}

\end{document} 

在此处输入图片描述

相关内容