[Tex/LaTex] Change equation number latex

equationsnumbering

I would like to quote a part of a paper and would like to keep the same numbering of equations. For example, suppose in a paper, the equation appears

 \begin{equation}
       1 + 1 = 2
 \end{equation}

And appears numbered as (5) in the paper, and not (1) which would appear when I type it out in LaTeX. I would like to give a direct quote of the paper, including the equation number. Is there any way to do this?

Best Answer

You can set the number of the equations yourself with \tag and this will keep your equation numbers other than the tagged value the same. This looks odd though and perhaps isn't what you are looking for?

\documentclass{article}

\usepackage{amsmath}

\begin{document}

\begin{equation} \tag{5}
   1 + 1 = 2             
\end{equation}

\begin{equation}
y=mx+c
\end{equation}

\end{document}
Related Question