同一环境中有不同的排列方式?

同一环境中有不同的排列方式?

如何在相同的对齐环境中获得不同的对齐?这里有一些(伪)代码来说明我的想法:

\begin{align}
a = &2\\
&+ 3 + 4 \notag\\
&= now I would like the equation sign to be aligned with the first equation sign at line 1
\end{align}

有哪位 LaTeX 专家可以帮助我吗?

答案1

您有以下几种选择:

\documentclass{article}
\usepackage{amsmath}

\begin{document}

\begin{align}
\begin{split}
a &= 2+2+2+2+2 \\
  &\quad +3+4
\end{split}
\\
  &= x+y+z
\end{align}

\begin{align}
a &= \begin{aligned}[t]
       & 2+2+2+2+2 \\
       & +3+4
     \end{aligned}
\\
  &= x+y+z
\end{align}

\end{document}

在此处输入图片描述

答案2

2根据我的口味,我将使用这个 MWE 来编写代码,其中和之间有完美的垂直对齐,+如屏幕截图所示,以及两个等号之间。

在此处输入图片描述

\documentclass[a4paper,12pt]{article}
\usepackage{amsmath}

\begin{document}
\begin{align}
a &= 2\\
&\phantom{{}=}+ 3 + 4 \notag\\
&= \dotsb
\end{align}
\end{document}

相关内容