我正在尝试使用拆分环境将一个方程式拆分为两行,并将一个注释拆分为两行。
\begin{align}
\begin{split}
f(x) =& f(y) + g(y) & \text{Something happening here}\\
&+ A_n + B_n &\text{something else happening here}
\end{split}
\end{align}
我收到错误,告诉我不能&
在分割环境中使用字符。
答案1
您可能想要aligned
或者alignedat
想要对两个块之间的空间有更多的控制。
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{equation}
\begin{alignedat}{2}
f(x) &=f(y) + g(y) &\qquad& \text{Something happening here} \\
&\quad + A_n + B_n & & \text{something else happening here}
\end{alignedat}
\end{equation}
\end{document}
答案2
看来最好的办法是进行两次分割:
\begin{align}
\begin{split}
f(x) =~& f(y) + g(y) \\
&+ A_n + B_n
\end{split}
\begin{split}
& \text{Something happening here} \\
& \text{something else happening here}
\end{split}
\end{align}