如何正确对齐没有等号的线与其他线

如何正确对齐没有等号的线与其他线

我想写一个形式如下的方程

    formula 1
 =  formula 2
 =  formula 3
    ...

但是,我无法将第一行与其他行对齐。我尝试过\quad\mathbin{\phantom{=}},但间距与 不一样=

我怎样才能正确对齐第一行?

下面是 MWE。

\documentclass{article}
\usepackage{mathtools}

\begin{document}

\begin{align*}
    &\quad \{ f \colon A \to B \} \\
    % &\mathbin{\phantom{=}} \{ f \colon A \to B \} \\
    &= \{ g \colon C \to D \}
\end{align*}

\end{document}

答案1

您可以将其用作\{对齐点。

在此处输入图片描述

\documentclass{article}
\usepackage{mathtools}
\begin{document}
\begin{align*}
       &\{ f \colon A \to B \} \\
    ={}&\{ g \colon C \to D \}
\end{align*}
\end{document}

相关内容