I have some back-up slides at the end of my presentation, which are accessed by means of hyperlinks. For this reason, I would like to "stop" the scrolling of the slides (done by clicking PageUp / Page Down or rotating the mouse wheel ) at my last "actual" slide, preventig me to show the accessory slides by mistake during the presentation. Is this possible somehow ? I am not sure whether I made myself clear or not ...
MWE:
\documentclass{beamer}
\begin{document}
\begin{frame}[label=mainBody]
txt 1
\hyperlink{accessorySlide}{\beamerbutton{jump to accessory slide}}
\end{frame}
\begin{frame}
txt 2
\end{frame}
\begin{frame}
Thank you
\end{frame}
\begin{frame}[label=accessorySlide]
accessory information
\hyperlink{mainBody}{\beamerbutton{jump back to main body}}
\end{frame}
\end{document}
I'd like, when in presentation mode, not to be possible to scroll beyond the "thank you" slide
\againframegives a way to repeat a frame without copy-pasting – Chris H Jan 13 '17 at 15:46\againframeinserts another page into the pdf rather than looping using a hyperlink – Chris H Jan 13 '17 at 16:18