Estou tentando alinhar =
oterceiroem linha com o second =
dosegundolinha. Tentei várias combinações sem nenhum resultado agradável. Existem inúmeras perguntas e respostas de “alinhamento”, mas nenhuma parece se adequar a esta situação (trivial?).
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}
Responder1
Responder2
com array (simples e eficaz):
\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}
Termo aditivo: considerandoSigurcomente:
\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}