Is there a way to make some slides inaccessible for basic forward navigation controls (left arrow and mouse click)? Motivation: I want these slides to reside at the end of my presentation and be accessible only via hyperlinks. According to Beamer User Guide this might be possible w/ \lecture and \includeonlylecture but this accomplished nothing (a MWE below). Another solution would be to somehow† specify the current slide to be the next one shown (and put the reserved stuff after it), but I don't know if this is possible. A third way would be to make the reserved slides be partly like the last and partly new, and switch the shown/hidden parts depending on whether a link is clicked or not. As I'm running out of time in preparing the presentation, I will not start experimenting w/ any of this
† E.g. by a label or option
\documentclass{beamer}
\includeonlylecture{wee1}
\begin{document}
\lecture{Vector Spaces}{wee1}
\frame{ju}
\frame{ju0}
\lecture{Scalar Products}{wee2}
\frame{nu}
\frame{nu0}
\end{document}