8

Does anyone know how to number an equation manually? I know using \begin{equation} automatically numbers the equation but I want to number it manually.

Like this:

ax=b                      2.1

ax=b                      2.2

etc.

Null
  • 1,525

1 Answers1

12

You can use the amsmath package and the \tag command. If you don't want the parenthesis, use \tag*.

\documentclass{article}
\usepackage{amsmath}
\begin{document}
    \begin{equation}
        ax= b \tag{2.1}
    \end{equation}
\end{document}
Ondrian
  • 1,536