Como posso alinhar à esquerda cada célula em uma equação contendo símbolos matemáticos?

Como posso alinhar à esquerda cada célula em uma equação contendo símbolos matemáticos?

Como o título já indica, tenho uma equação que contém várias células e quero que o conteúdo de cada célula fique alinhado à esquerda. Seguindoesta respostaEu tentei usar flalign, no entanto, isso parece apenas alinhar à esquerda a equação geral. A seguir está um pequeno exemplo:

\documentclass{article}
\usepackage{amsmath}

\begin{document}

\begin{flalign*}
  \textrm{Some stuff about } \rho & & \\
  \qquad \textrm{This is a really long equation and the following} \qquad & \textrm{should be left aligned} & \\
  \qquad \textrm{Short equation (should be left too)}              \qquad & \textrm{but quite a long one on the right though} &
\end{flalign*}

\end{document}

Este exemplo produz o seguinte resultado (coloquei algumas observações para indicar o que gostaria de alcançar):

saída

Depois de fazer algumas pesquisas, tive a sensação de que qualquer um dosesses doisabordagens deveriam servir, mas não consigo fazê-lo funcionar.

Seguindo oPrimeira abordagemTentei:

\documentclass{article}
\usepackage{amsmath}
\usepackage{calc}

\newcommand*{\mbc}[2]{\makebox[\widthof{$F(\alpha)$}][#1]{$#2$}}

\begin{document}

\begin{flalign*}
  \mbc{l}{\textrm{Some stuff about } \rho} & & \\
  \qquad \textrm{This is a really long equation and the following} \qquad & \textrm{should be left aligned} & \\
  \qquad \textrm{Short equation (should be left too)}              \qquad & \textrm{but quite a long one on the right though} &
\end{flalign*}

\end{document}

Surpreendentemente, a primeira linha agora parece terminar na segunda célula (em vez de ficar alinhada à esquerda na primeira célula):

saída com \mbc

Osegunda abordagemnão parece funcionar com símbolos matemáticos:

\documentclass{article}
\usepackage{amsmath}

\newcommand{\pushleft}[1]{\ifmeasuring@#1\else\omit$\displaystyle#1$\hfill\fi\ignorespaces}

\begin{document}

\begin{flalign*}
  \pushleft{\textrm{Some stuff about } \rho} & & \\
  \qquad \textrm{This is a really long equation and the following} \qquad & \textrm{should be left aligned} & \\
  \qquad \textrm{Short equation (should be left too)}              \qquad & \textrm{but quite a long one on the right though} &
\end{flalign*}

\end{document}

Fornece a saída:

$ pdflatex test.tex
[...]
! Undefined control sequence.
\pushleft #1->\ifmeasuring 
                           @#1\else \omit $\displaystyle #1$\hfill \fi \igno...
l.20 \end{flalign*}

Inserir adicionais $$também não ajuda. O mais próximo que consegui foi usar \omite, \hfillno entanto, \omitparece optar por sair do modo matemático, então preciso inserir adicionais $$:

\documentclass{article}
\usepackage{amsmath}

\begin{document}

\begin{flalign*}
  \omit $\textrm{Some stuff about } \rho$ \hfill & & \\
  \omit $\qquad \textrm{This is a really long equation and the following} \qquad$ \hfill & \textrm{should be left aligned} & \\
  \omit $\qquad \textrm{Short equation (should be left too)}              \qquad$ \hfill & \textrm{but quite a long one on the right though} &
\end{flalign*}

\end{document}

saída com \omit e \hfill

Funciona, mas meu IDE está marcando os extras $$como erros em todos os lugares, o que definitivamente não é agradável. Além disso, não tenho certeza se esta é uma solução limpa que sempre funcionará conforme o esperado.

Alguém tem uma idéia de como obter o alinhamento à esquerda das células em uma equação contendo símbolos matemáticos? Ou algum comentário sobre esta última \omitabordagem ?\hfill$$

Responder1

Assim?

\documentclass{article}
\usepackage{mathtools}
\usepackage[showframe]{geometry}

\begin{document}

\begin{flalign*}
 & \textrm{Some stuff about } \rho & & \\
  & \qquad \textrm{This is a really long equation and the following} && \textrm{should be left aligned} \\
  & \qquad \textrm{Short equation (should be left too)} & & \textrm{but quite a long one on the right though}
\end{flalign*}

\end{document} 

insira a descrição da imagem aqui

Código de exemplo para outros alinhamentos:

\documentclass{article}
\usepackage{mathtools}
\usepackage[showframe]{geometry}

\begin{document}

\begin{flalign*}
  \shortintertext{\texttt{Columns left-aligned:} } 
  & \textrm{Some stuff about } \rho  \\
  & \qquad \textrm{This is a really long equation and the following} && \textrm{should be left aligned} \\
  & \qquad \textrm{Short equation (should be left too)} & & \textrm{but quite a long one on the right though}
\end{flalign*}

\begin{flalign*}
  \shortintertext{\texttt{Columns right-aligned:} } 
  & \rlap{Some stuff about $\rho $} \\
  & & \textrm{This is a really long equation and the following}& & \textrm{should be right aligned}& \\
  & &\textrm{Short equation (should be rightt too)} && \textrm{but quite a long one on the right though}&
\end{flalign*}

\begin{flalign*}
  \shortintertext{\texttt{Left column centred, right column left-aligned: }}
  & \textrm{Some stuff about } \rho  \\
  & \begin{gathered} \textrm{This is a really long equation and the following}\\\textrm{Short equation (should be centred)}\end{gathered}
  & \begin{aligned} & \textrm{should be left aligned} \\
  & \textrm{but quite a long one on the right though}\end{aligned}&
\end{flalign*}

\end{document} 

insira a descrição da imagem aqui

informação relacionada