使用 \align 时,它会从 (1)、(2)、(3) 等开始标记方程式,但我希望从 (5)、(6)、(7) 等开始标记。有什么方法可以在 \align 命令中做到这一点吗?
答案1
equation
在 LaTeX 文档中,与显示方程环境(不仅仅是、还有align
、以及许多其他环境)相关的计数器变量gather
称为equation
。使用\setcounter
指令将计数器的值设置为某个所需的数字。
因为四行align
环境的第一个方程应该是5
,所以计数器的期望值equation
是4
。
\documentclass{article} % or some other suitable document class
\usepackage{amsmath} % for 'align' environment
\setlength\textwidth{2in} % just for this example
\begin{document}
\setcounter{equation}{4} % set the counter's value
\begin{align}
1+1 &= 2 \\
2+2 &= 4 \\
3+3 &= 6 \\
4+4 &= 8
\end{align}
\end{document}