5

Somewhere in my document I have some equation:

\begin{equation}
    \label{some_equation}
    ...
\end{equation}

I would like to repeat this equation later (so that the reader does not have to flip back and forth between sections), but would like it to appear with the same label (e.g. if it was numbered as equation (1), I would like its "clone" to also appear with the numbering (1)). Is there an easy way to do this?

lockstep
  • 250,273

1 Answers1

7

You could use \tag together with a \label and \ref combo as in the following MWE

\documentclass{article}
\usepackage{amsmath,amssymb}
\usepackage{lipsum}
\pagestyle{empty}
\begin{document}

\begin{equation}
  y = x^2 +3 \label{eqn:1}
\end{equation}

\lipsum[1]

\begin{equation}
  y = x^2 +3 \tag{\ref{eqn:1}}
\end{equation}

\end{document}
egreg
  • 1,121,712
A.Ellett
  • 50,533