将等号放在上一行等号的正下方

将等号放在上一行等号的正下方

在以下命令中,如何将第二行的等号放在第一行的等号正下方:

\documentclass{report}
\usepackage{amsmath}

\begin{document}

\begin{equation}
\begin{split}
Z = X+Y\\ =\text{A little big line than X+Y}
\label{Eq1} 
\end{split}
\end{equation}

\end{document}

答案1

像这样?

\documentclass{report}
\usepackage{amsmath}

\begin{document}

\begin{align}
    Z &= X+Y\notag\\ 
    &=\text{A little big line than X+Y}\label{Eq1} 
\end{align}

Ref: \eqref{Eq1}.
\end{document}

我也建议http://www.ctan.org/pkg/cleveref。 视频https://youtu.be/LFrdqQZ8FFc也可能有帮助。

相关内容