Dividindo equações com parênteses alinhados

Dividindo equações com parênteses alinhados

Como posso quebrar a primeira linha

\begin{equation}
\begin{aligned}[2]
& some stuff \left\{ stuff' + stuff'' \right\} \\
& = some other stuff
\end{aligned}
\end{equation}

de forma que a seguinte saída gráfica seja obtida

stuff { ...
       + ... }
= some other stuff

para os parênteses do gráfico, usando \right.etc.?

Responder1

Só para detalhar meu comentário

\documentclass{article}
\usepackage{amsmath,mathtools}
\begin{document}

\begin{align}
\begin{split}
 \MoveEqLeft some stuff \bigg\{ 
   \!\begin{aligned}[t] & stuff' \\
                    & + stuff'' \bigg\}
      \end{aligned}
     \\
                    & = some other stuff
\end{split}
\end{align}

\end{document}

Responder2

\documentclass{article}
\usepackage{mathtools,calc}
\begin{document}

\begin{align}
 some stuff \bigg\{ & stuff' \nonumber\\
                    & + stuff'' \bigg\} \\
 \makebox[\widthof{$some stuff \bigg\{$}][l]{$= some other stuff $}\nonumber
\end{align}

\end{document}

insira a descrição da imagem aqui

Responder3

Acho que o principal problema que você está enfrentando é que o fato da última linha ser mais longa está afetando o alinhamento das linhas acima dela. Então, você pode usar mathrlappara que o comprimento da última linha não afete o alinhamento:

insira a descrição da imagem aqui

Observe que =está alinhado à direita ao ponto de alinhamento especificado. Isso ocorre porque o alinhamento usual é: o que está à esquerda de um sinal de igual está alinhado à direita e o que está à direita do sinal de igual está alinhado à esquerda.

No entanto, se você quiser que o último texto seja alinhado à esquerda, recomendo usar alignedat:

insira a descrição da imagem aqui

Código:aligned

\documentclass{article}
\usepackage{mathtools}
\begin{document}

\begin{align}
\begin{aligned}
 \text{some stuff} \bigg\{ & \text{stuff }' \\
                           & + \text{stuff }'' \bigg\} \\
 =\mathrlap{\text{some other stuff}}
\end{aligned}
\end{align}

\end{document}

Código:alignedat

\documentclass{article}
\usepackage{mathtools}
\begin{document}

\begin{align}
\begin{alignedat}{3}
 &\text{some stuff} \bigg\{ && \text{stuff }' \\
 &                           && + \text{stuff }'' \bigg\} \\
 &=\mathrlap{\text{some other stuff}}
\end{alignedat}
\end{align}

\end{document}

informação relacionada