在 \sum 或 \int 内拆分方程

在 \sum 或 \int 内拆分方程

我试图将多项式的总和分成多行,如下所示:

\documentclass[12pt,a4paper]{book}
\usepackage{amsmath}
\begin{document}
\begin{align*}
        L &= \sum { A && \text{This equation sums ABC} \\
                    \times B \\
                    \times C  }
\end{align*}
\end{document}

但我明白Missing } inserted。动机是为了\text不被推得太靠右。

答案1

正如@daleif在评论中指出的那样,您必须删除将材料括在后面的一对虚假花括号\sum。此外,您几乎肯定应该为第2行和第3行的材料提供对齐点。

在此处输入图片描述

\documentclass[12pt,a4paper]{book}
\usepackage{amsmath}
\begin{document}
\hrule % just to illustrate width of textblock
\begin{align*}
L &=     \sum   \text{A-stuff}   \tag*{This equation sums ABC} \\
  &\quad \times \text{B-stuff} \\
  &\quad \times \text{C-stuff}  
\end{align*}
\end{document}

答案2

使用aligned

\documentclass[12pt,a4paper]{book}
\usepackage{amsmath}
\begin{document}

\begin{align*}
L &= \sum \Bigl( \begin{aligned}[t]
                 & A \\
                 & \times B \\
                 & \times C \Bigr)
                 \end{aligned}
  && \text{This text is not so far}
\\
M &= ABC && \text{This text is not so far}
\end{align*}
Just for a check:
\begin{align*}
M &= ABC && \text{This text is not so far} \\
K &= XYZ && \text{This text is not so far}
\end{align*}

\end{document}

在此处输入图片描述

答案3

谢谢。加上括号,而 \phantom不是\quad...

\documentclass[12pt,a4paper]{book}
\usepackage{amsmath}
\begin{document}

\begin{align*}
        L &= \sum \big( A \\
                    & \phantom{= \sum \big(} \times B \\
                    & \phantom{= \sum \big(} \times C
                \big)
\end{align*}

\end{document}

而且效果很好。 在此处输入图片描述

现在,有没有办法做这样的事情:


        L &\setphantom{= \sum \big(} A \\
                    & \getphantom \times B \\
                    & \getphantom \times C
                \big)

相关内容