Estoy tratando de alinear el =
de latercerolínea con la second =
de lasegundolínea. Probé varias combinaciones sin resultados satisfactorios. Hay numerosas preguntas y respuestas sobre "alineamiento", pero ninguna parece encajar en esta (¿trivial?) situación.
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}
Respuesta1
Respuesta2
con matriz (simple y efectiva):
\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}
Apéndice: considerandoSigurcomentario:
\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}