我想写出按方程符号缩进的方程。我尝试了许多可用示例,但无法完成。我正在使用 Ubuntu 14.04 并使用 Kile 作为编辑器和编译器。
\documentclass{article}
\usepackage{mathptmx,amssymb,amsmath}
\begin{document}
\begin{enumerate}
\item Let's see
\begin{equation}
\begin{split}
(k+1)^3 - (k+1) ={}& k^3 + 3k^2 + 3k + 1 - k -1\\
={}& (k^3 - k) + 3(k^2 + k)\\
={}& 3m + 3 (K^2 + k)\\
={}& 3 (m + k^2 + k) \\
={}& 3 M
\end{split}
\end{equation}
\end{enumerate}
\end{document}
答案1
&
先于对齐点。在通常情况下,split
您应使用&=
={}&
可能在特殊场合使用,但是非常罕见。
\documentclass{article}
\usepackage{mathptmx,amssymb,amsmath}
\begin{document}
\begin{enumerate}
\item Let's see
\begin{equation}
\begin{split}
(k+1)^3 - (k+1) &= k^3 + 3k^2 + 3k + 1 - k -1\\
&= (k^3 - k) + 3(k^2 + k)\\
&= 3m + 3 (K^2 + k)\\
&= 3 (m + k^2 + k) \\
&= 3 M
\end{split}
\end{equation}
\end{enumerate}
\end{document}
\begin{equation}
和之间\end{equation}
以及 之前不要有空行\begin{equation}
。
你得到的结果可能是
但编译器会伴随一些错误消息,您不应该忽视它们。