I'm making a presentation using the beamer, and some slides contains some details which can be shown using a click-on button to a slide which will be in the appendix. I want this slide to be shown only when I click on that button.
Is it possible to hide the appendix from the presentation slides but keeping the ability to click on that button and show the wanted slide.
As an example: (I want the slide named by "More Details" to be hidden from the presentation pdf file)
\documentclass{beamer}
\usetheme{Boadilla}
\begin{document}
\begin{frame}[label=slide1]
text1
show more details \hyperlink{more-details}{\beamerbutton{show more details}}
\end{frame}
\begin{frame}
text2
\end{frame}
\begin{frame}
text3
\end{frame}
%%%%%%%%%%%%%%%
\appendix
\begin{frame}[label=more-details,noframenumbering]{More Details}
Details
\hyperlink{slide1}{\beamerbutton{Back}}
\end{frame}
\end{document}