정렬하려고 하는데=
의제삼와 라인second =
의두번째선. 나는 여러 가지 조합을 시도했지만 만족스러운 결과를 얻지 못했습니다. 수많은 '정렬' 질문과 답변이 있지만 이 (사소한?) 상황에 맞는 것은 없는 것 같습니다.
MWE:
\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
답변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}