与 alignat 对齐时出现问题

与 alignat 对齐时出现问题

我对这个对齐还有另一个问题。我不知道如何对齐 G 和 Aut(V_K) 之间的 p 函数。

再次感谢您的所有支持。

\begin{alignat*}{2}
\theta:\mathcal{E}(K|k)&\longrightarrow& H^{1}(G,\Aut(V_{K})) \\
(V',x')&\longmapsto&p:G &\longrightarrow\Aut(V_{K}) \\
&&s&\longmapsto p_s=f^{-1}\circ s(f)=f^{-1}\circ s\circ f\circ s^{-1}.
\end{alignat*}

在此处输入图片描述

答案1

您想使用嵌套aligned

\documentclass{article}
\usepackage{amsmath}

\DeclareMathOperator{\Aut}{Aut}

\begin{document}

\begin{equation*}
\begin{aligned}
\theta:\mathcal{E}(K|k)&\longrightarrow H^{1}(G,\Aut(V_{K})) \\
(V',x')&\longmapsto
  \begin{aligned}[t]
  p:G &\longrightarrow\Aut(V_{K}) \\
  s&\longmapsto p_s=f^{-1}\circ s(f)=f^{-1}\circ s\circ f\circ s^{-1}.
  \end{aligned}
\end{aligned}
\end{equation*}

\end{document}

在此处输入图片描述

最好用\colon而不是:;而且,在我看来,正常长度的箭更好。

\documentclass{article}
\usepackage{amsmath}

\DeclareMathOperator{\Aut}{Aut}

\begin{document}

\begin{equation*}
\begin{aligned}
\theta\colon\mathcal{E}(K|k)&\rightarrow H^{1}(G,\Aut(V_{K})) \\
(V',x')&\mapsto
  \begin{aligned}[t]
  p\colon G &\rightarrow\Aut(V_{K}) \\
  s&\mapsto p_s=f^{-1}\circ s(f)=f^{-1}\circ s\circ f\circ s^{-1}.
  \end{aligned}
\end{aligned}
\end{equation*}

\end{document}

在此处输入图片描述

相关内容