I am creating a presentation with Beamer, in which my references span more than one frame. In order to have the references automatically split in multiple frames I used the allowframebreaks parameter.
Also, I do not want to include the reference frames in the frame numbering. Therefore, I tried to ignore those frames with two different approaches:
By using addtocounter to decrement the total frame number
\begin{frame}[plain, allowframebreaks]
\frametitle{References}
\bibliographystyle{abbrv}
{\tiny \bibliography{bibliography}}
\addtocounter{framenumber}{-1} % <---- HERE
\end{frame}
By using noframenumbering (available since v. 3.08) to simply ignore the frame
\begin{frame}[plain, allowframebreaks, noframenumbering] % <---- HERE
\frametitle{References}
\bibliographystyle{abbrv}
{\tiny \bibliography{bibliography}}
\end{frame}
The problem I am facing is that just the first reference frame is being ignored, no matter the approach used. The additional ones (automatically split by the use of allowframebreaks) are always being accounted in the total frame number (checked with \inserttotalframenumber).
I would very much appreciate any help in pointing out what I am doing wrong. :)
plainframe style. Any way to do this with a custom frame style? – elgicse Dec 15 '16 at 15:5630/36, for example). The second solution doesn't count the reference slides for the total, but increases slide numbers during the references (so in the references, I get numbering like32/30,33/30, etc). If I combine both solutions in your answer, it works perfect. – Chester Apr 09 '18 at 13:02framenumbercounter withpage. – Christoph90 Mar 09 '23 at 17:40