Is there a way to do the page numbering such that the page number on the supplemental slide will be exactly the same as the initial slide?
I ask all of this with the following in mind:
- I do not want to change the overall page count
- I do not want to add a section to the top of my slide for the Appendix
- I want the Appendix slides to be accessed only optionally
- I would like for these slides to remain at the end of the presentation, if possible
- I do not want to add any additional circles to denote slides in that subsection.
Code: Select all
\documentclass[professionalfont]{beamer}
\mode<presentation>
\usetheme{CambridgeUS}
\useoutertheme{miniframes}
\beamertemplatenavigationsymbolsempty
\begin{document}
\section{Section 1}
\subsection{}
\frame
{
\frametitle{Slide 1}
Test slide 1
}
\frame
{
\frametitle{Slide 2}
Test slide 2
\vspace{0.5cm}
Go to appendix slide.
\vspace{0.5cm}
Appendix! \hspace{0.10cm}\hyperlink{bao<1>}{\beamergotobutton{Go!}}
}
\frame
{
\frametitle{Slide 3}
Test slide 3
}
\section*{}
\addtocounter{framenumber}{-1}
\frame[label=bao]
{
\frametitle{Appendix Slide}
Appendix Material
\vspace{0.05cm}
{
\leftskip.5\textwidth
{\tiny
\noindent \hspace{-1.8mm} \Acrobatmenu{GoBack}{\beamerreturnbutton{Go Back to Slide 2}}
}}
}
\end{document}