I am trying to have multiple Beamer slides discussing the same figure, and have the figure have the same Figure number across multiple slides. I am not sure how to do this. In the following example, I would like to have multiple slides discussing "First figure". If I simply create two different figures, clearly they will have different numbers. If I label them with the same label, I get
LaTeX Warning: There were multiply-defined labels.
What I want is something like below, but the second slide to say "Another interesting point about Fig. 1". How can I do this? Thank you in advance!
\documentclass{beamer}
\setbeamertemplate{caption}[numbered]
\begin{document}
\begin{frame}{Talk about Fig. 1}
\begin{figure}[h]
\centering
My first figure
%\includegraphics{something.png}
\caption{First figure}
\label{fig:first-fig}
\end{figure}
Interesting point about Fig. \ref{fig:first-fig}.
\end{frame}
\begin{frame}{Talk about Fig. 1}
\begin{figure}[h]
\centering
My first figure
%\includegraphics{something.png}
\caption{First figure}
\label{fig:first-fig-2}
\end{figure}
Another interesting point about Fig. \ref{fig:first-fig-2}.
\end{frame}
\end{document}

