如何处理长方程式而不必在对齐环境中放置“&”智能位置?

如何处理长方程式而不必在对齐环境中放置“&”智能位置?

添加红线是为了显示环境和对齐之间的边界。图片已编辑以显示我想要的内容。

是否存在这样的环境,使得长方程式表现得如此?我该如何做才能在第一个方程式中不将 & 放入一些随机位置?

这是示例 tex 代码:

\documentclass[a4paper,11pt,twoside]{memoir}
\usepackage{amsmath}        
Now we just a sanity check, to make sure that the equation of $E_1$ is indeed satisfied with this isogeny, but multiplying by ${(x-8)^6}$ on both sides to make the calculations simpler.
\begin{align*}
{(x-8)^6}\left(\left(\frac{x^3 + 6 x^2 + 8 x  + 4}{(x-8)^2}\right)^3 + &5\left(\frac{x^3 + 6 x^2 + 8 x  + 4}{(x-8)^2}\right)\right)\\
&= y^2(x^3 +9 x^2 + 6x +5)\\
&= (x^3+4)(x^3 +9 x^2 + 6x +5)\\
&= x^6 + 9 x^5 + 6 x^4 + 9 x^3 + 3 x^2 + 2 x + 9
\end{align*}

我一直在 stackexchange 上尝试寻找类似的问题,但没有成功。这是我的第一个 stackexchange 问题。如果我可以澄清问题中的某些内容,请告诉我。 编辑:包含一个小序言

答案1

您可以使用multline和嵌套aligned

\documentclass{article}
\usepackage{amsmath}

\begin{document}

Now we just do a sanity check, to make sure that the equation of~$E_1$
is indeed satisfied with this isogeny, but multiplying by $(x-8)^6$
on both sides to make the calculations simpler:
\begin{multline*}
(x-8)^6\biggl(
  \biggl(\frac{x^3 + 6x^2 + 8x + 4}{(x-8)^2}\biggr)^{\!3} +
  5\biggl(\frac{x^3 + 6x^2 + 8x  + 4}{(x-8)^2}\biggr)
\biggr)\\
\begin{aligned}
&= y^2(x^3 +9 x^2 + 6x +5)\\
&= (x^3+4)(x^3 +9 x^2 + 6x +5)\\
&= x^6 + 9x^5 + 6x^4 + 9x^3 + 3x^2 + 2x + 9.
\end{aligned}
\end{multline*}

\end{document}

在此处输入图片描述

我删除了一些不必要的括号,并将\left和改为 。我发现在大括号后\right添加 到 指数会更好。\!

相关内容