如何手动写出方程编号?

如何手动写出方程编号?

有人知道如何手动对方程式进行编号吗?我知道使用\begin{equation}自动对方程式进行编号,但我想手动对其进行编号。

像这样:

ax=b                      2.1

ax=b                      2.2

ETC。

答案1

您可以使用数学包和\tag命令。如果您不需要括号,请使用\tag*

\documentclass{article}
\usepackage{amsmath}
\begin{document}
    \begin{equation}
        ax= b \tag{2.1}
    \end{equation}
\end{document}

相关内容