方程式对齐“带有偏移”?

方程式对齐“带有偏移”?

使用 LaTeX,如何实现以下对齐方程?

enter image description here

虚线表示期望的对齐方式。实线框表示一些随机表达。

答案1

您的里程可能会有所不同,但想法是这样的:

\documentclass{article}
\usepackage{amsmath}

\begin{document}

\begin{equation}
\begin{split}
   & x^2y+xy(x+y)^6 \\
={}& \!\begin{aligned}[t]
       xy(   & x+x^6+6x^5y+15x^4y^2+20x^3y^3\\
       {}+{} & 15x^2y^4+6xy^5+y^6)
     \end{aligned}
\end{split}
\end{equation}

\end{document}

enter image description here

答案2

另一种方法:

\documentclass[11pt]{article}
\usepackage{amsmath}

\begin{document}
\begin{equation}
    \begin{aligned}
    A&=&2+2&=4\\
    B&=&4\cdot2&=8\\
    &+4&&=12\\
\end{aligned}
\end{equation}
\end{document}

enter image description here

相关内容