[Tex/LaTex] How to jump to a slide in a beamer presentation

beamer

I have to prepare a beamer presentation, but depending on the audience, during the presentation I might decide to skip some material. Is there a way to do this without having to skip quickly through the slides? I seem to remember that there was a command, but I forgot what it was and anyway I never succeeded in having it work. Thanks for your help!

Best Answer

Beamer offers a variety of navigation buttons for such purposes. Together with the \hyperlink command they can be used to conveniently jump to other slides or frames.

\documentclass{beamer}

\begin{document}
\begin{frame}
1

\hyperlink{foo}{\beamerskipbutton{skip slide}}

\end{frame}

\begin{frame}
2
\end{frame}

\begin{frame}[label=foo]
3
\end{frame}
\end{document}

For more examples, please see section 11.1 Adding Hyperlinks and Buttons from the beamer user guide.

Related Question