任意标记方程式

任意标记方程式

当我有方程式时,例如

\begin{equation} ... \end{equation}

我可以任意为方程式分配数字吗?我希望使用 (1)、(2.1)、(2.2)、(2.3)、(3.1)、(3.2)、(4)、... 等顺序,而不是通常的顺序 (1)、(2)、(3)、...

答案1

是的,当然,使用amsmath包及其\tag命令。

一个小例子

\documentclass{article}
\usepackage{amsmath}

\begin{document}

\begin{equation}
  y=mx+b\tag{1.2}
\end{equation}
or
\begin{equation}
  y=mx+b\tag{duck}
\end{equation}
\end{document}

读完你的评论后,如果你想要equation数字继承数字theorem,那么你可以使用,例如,

\newtheorem{mytheorem}{Theorem}
\numberwithin{equation}{mytheorem}

这样您就不必手动标记方程式了。

相关内容