Centralizar a matemática enquanto coloca comentários à direita

Centralizar a matemática enquanto coloca comentários à direita

Estou tentando ter a matemática como no gather*ambiente, onde as equações matemáticas estão centralizadas em seu espaço, mas também têm comentários à direita explicando as etapas. Como posso fazer isso? Abaixo está um código que justifica à direita as equações matemáticas dentro de seu espaço. Como posso centralizar isso? Quero fazer isso sem alinhar todos os símbolos de igual porque algumas das equações têm lados direitos longos, enquanto outras têm lados esquerdos longos.

\begin{align*}
y'+Py=Q & \quad\textrm{by \eqref{eq:1}}\\
e^{\int Pdx}(y'+Py)=e^{\int Pdx}Q & \quad\textrm{multiply both sides by }I=J=e^{\int Pdx}\\
(ye^{\int Pdx})'=e^{\int Pdx}Q & \quad\textrm{by \eqref{eq:3}}\\
ye^{\int Pdx}=\int e^{\int Pdx}Q dx + C\\
y=e^{-\int Pdx}\int e^{\int Pdx}Q dx + Ce^{-\int Pdx}\\
\end{align*}

EDITAR:

Descobri que você pode usar o ambiente array para fazer isso, mas as linhas matemáticas parecem muito próximas. Existe uma maneira de consertar isso?

\begin{displaymath}
\begin{array}{cl}
 y'+Py=Q & \quad\textrm{by \eqref{eq:1}}\\
 e^{\int Pdx}(y'+Py)=e^{\int Pdx}Q & \quad\textrm{multiply both sides by }I=J=e^{\int Pdx}\\
 (ye^{\int Pdx})'=e^{\int Pdx}Q & \quad\textrm{by \eqref{eq:3}}\\
 ye^{\int Pdx}=\int e^{\int Pdx}Q dx + C\\
 y=e^{-\int Pdx}\int e^{\int Pdx}Q dx + Ce^{-\int Pdx}\\
\end{array}
\end{displaymath}

Responder1

Aplique \displaystylena coluna matemática e estenda o conteúdo para corresponder ao que você normalmente obteria em alignambientes semelhantes a -:

insira a descrição da imagem aqui

\documentclass{article}

\usepackage{amsmath,array}
\newcommand{\dx}{\mathrm{d}x}
\newcommand{\eqcomment}[1]{\qquad\textrm{#1}}

\begin{document}

\[
  \renewcommand{\arraystretch}{1.5}
  \begin{array}{ >{\displaystyle}c l }
                    y' + Py = Q                                  & \eqcomment{by (1)} \\
           e^{\int P \dx}(y' + Py) = e^{\int P\dx} Q             & \eqcomment{multiply both sides by $I = J = e^{\int P \dx}$} \\
        (ye^{\int P \dx})' = e^{\int P \dx} Q                    & \eqcomment{by (3)} \\
        ye^{\int P \dx} = \int e^{\int P \dx}Q \dx + C           \\
   y = e^{-\int P \dx}\int e^{\int P \dx}Q \dx + Ce^{-\int P\dx}
  \end{array}
\]

\end{document}

Responder2

Aqui está uma implementação que mede os comentários; se não houver sobreposição, o código centraliza as equações como em gather; caso contrário, ele os centralizará no espaço restante.

A tolerância para a sobreposição é 1em, mas pode ser definida como um valor negativo caso vejamos que isso é viável.

Como você pode ver, seu código empurraria uma das equações além da margem esquerda (primeiro exemplo), mas com uma sobreposição negativa podemos ajustá-la.

Outro parâmetro que pode ser definido é stretch, para permitir mais espaçamento vertical (padrão 1,2, no segundo exemplo é definido como 1,8).

\documentclass{article}
\usepackage{amsmath,xparse,environ,array}

\usepackage{showframe} % just to see the text block borders

\ExplSyntaxOn
\NewEnviron{gathercomment}[1][]
 {
  \keys_set:nn { gathercomment } { #1 }
  \begin{equation*}
  \gathercomment:V \BODY
  \end{equation*}
 }

\keys_define:nn { gathercomment }
 {
  overlap .dim_set:N = \l__gathercomment_overlap_dim,
  stretch .code:n = \renewcommand{\arraystretch}{#1},
  stretch .initial:n = 1.2,
 }

\seq_new:N \l__gathercomment_lines_seq
\seq_new:N \l__gathercomment_arow_seq
\dim_new:N \l__gathercomment_equations_dim
\dim_new:N \l__gathercomment_comments_dim
\box_new:N \l__gathercomment_equation_box
\box_new:N \l__gathercomment_comment_box

\cs_new_protected:Nn \gathercomment:n
 {
  \seq_set_split:Nnn \l__gathercomment_lines_seq { \\ } { #1 }
  \dim_zero:N \l__gathercomment_equations_dim
  \dim_zero:N \l__gathercomment_comments_dim
  \seq_map_function:NN \l__gathercomment_lines_seq \__gathercomment_measure:n
  % compare the widths
  \dim_compare:nTF
   {
    \l__gathercomment_equations_dim + \l__gathercomment_comments_dim + \l__gathercomment_overlap_dim
    >
    0.5\displaywidth
   }
   {% there would be overlap
    \begin{tabular}
     {
      @{}
      >{$\displaystyle}w{c}{\dim_eval:n {\displaywidth-\l__gathercomment_comments_dim - \l__gathercomment_overlap_dim}}<{$}
      @{\hspace{\l__gathercomment_overlap_dim}}
      w{r}{\l__gathercomment_comments_dim}
      @{}
     }
    \seq_use:Nn \l__gathercomment_lines_seq { \\ }
    \end{tabular}
   }
   {% no overlap
    \begin{tabular}
     {
      @{}
      >{$\displaystyle}w{c}{\displaywidth}<{$}
      @{}
      w{r}{0pt}
      @{}
     }
    \seq_use:Nn \l__gathercomment_lines_seq { \\ }
    \end{tabular}
   }
 }
\cs_generate_variant:Nn \gathercomment:n { V }

\cs_new_protected:Nn \__gathercomment_measure:n
 {
  \seq_set_split:Nnn \l__gathercomment_arow_seq { & } { #1 }
  % measure the half widths of the equations
  \hbox_set:Nn \l__gathercomment_equation_box
   { $\displaystyle \seq_item:Nn \l__gathercomment_arow_seq { 1 }$ }
  \dim_set:Nn \l__gathercomment_equations_dim
   {
    \dim_max:nn
     { \l__gathercomment_equations_dim }
     { \box_wd:N \l__gathercomment_equation_box / 2 }
   }
  % measure the widths of the comments
  \hbox_set:Nn \l__gathercomment_comment_box
   { \seq_item:Nn \l__gathercomment_arow_seq { 2 } }
  \dim_set:Nn \l__gathercomment_comments_dim
   {
    \dim_max:nn
     { \l__gathercomment_comments_dim }
     { \box_wd:N \l__gathercomment_comment_box }
   }
 }

\ExplSyntaxOff

\begin{document}

\begin{gathercomment}
y'+Py=Q & by \eqref{eq:1} \\
e^{\int P\,dx}(y'+Py)=e^{\int P\,dx}Q & multiply both sides by $I=J=e^{\int P\,dx}$ \\
(ye^{\int P\,dx})'=e^{\int P\,dx}Q & by \eqref{eq:3} \\
ye^{\int P\,dx}=\int e^{\int Pdx}Q dx + C \\
y=e^{-\int P\,dx}\int e^{\int P\,dx}Q\,dx + Ce^{-\int P\,dx}
\end{gathercomment}

\begin{gathercomment}[stretch=1.8,overlap=-2em]
y'+Py=Q & by \eqref{eq:1} \\
e^{\int P\,dx}(y'+Py)=e^{\int P\,dx}Q & multiply both sides by $I=J=e^{\int P\,dx}$ \\
(ye^{\int P\,dx})'=e^{\int P\,dx}Q & by \eqref{eq:3} \\
ye^{\int P\,dx}=\int e^{\int Pdx}Q dx + C \\
y=e^{-\int P\,dx}\int e^{\int P\,dx}Q\,dx + Ce^{-\int P\,dx}
\end{gathercomment}


\begin{gathercomment}
abc=def & xyz \\
x=y & xx \\
1=2 \\
xxx=xxxxxxx & x
\end{gathercomment}

\end{document}

insira a descrição da imagem aqui

informação relacionada