多重 = 對齊

多重 = 對齊

我正在嘗試=調整第三second =與的一致第二線。我嘗試了幾種組合,但沒有令人滿意的結果。有許多“對齊”問題和答案,但似乎沒有一個適合這種(微不足道的?)情況。

微量元素:

\documentclass[12pt,a4paper]{article}

\usepackage[fleqn]{amsmath}

\begin{document}

\begin{alignat*}{2}
\text{Then } x &= a_0y \text{ for some } y \in D\\
&= a_0uy = a_0yu\\
&= xu
\end{alignat*}

\end{document}

雙等於

答案1

在此輸入影像描述

\documentclass[12pt,a4paper]{article}

\usepackage[fleqn]{amsmath}

\begin{document}

\begin{alignat*}{2}
\text{Then } x &= a_0y \text{ for some } y \in D\\
&= a_0uy \begin{aligned}[t]
           & = a_0yu\\
           & = xu
         \end{aligned}
\end{alignat*}

\end{document}

答案2

在此輸入影像描述

使用數組(簡單有效):

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

\begin{document}
\[\setlength\arraycolsep{1pt}
\begin{array}{rll}
\text{Then } x  & = a_0y  & \text{for some } y \in D\\
                & = a_0uy & = a_0yu\\
                &         & = xu
\end{array}
\]
\end{document}

附錄: 考慮到西古爾評論:

在此輸入影像描述

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

\begin{document}
\[\setlength\arraycolsep{1pt}
\begin{array}{rlcl}
\text{Then } x  & = a_0y  &   &\text{for some } y \in D\\
                & = a_0uy & = &a_0yu\\
                &         & = &xu
\end{array}
\]
\end{document}

相關內容