I have a simplified slideshow class that basically creates each slide as a new page within an article class document. I'd like to add the ability to define a slide as a "pocket slide", a slide whose content should go in the middle of the document, but will only be presented if questions are asked. As such, I'd like to define the slide in the middle of the document, but have the slide go at the end. Can anybody give a suggestion for a package/mechanism to "reserve" pages for later?
Example:
\documentclass[english,20pt]{puslides}
\begin{document}
\titleslide{Some Title Here}
\onecolumnslide{Introduction Content}
\onecolumnslide{Parenthetical Content}
\onecolumnslide{Conclusions}
\end{document}
And the output would be a slideshow in this order:
+------------+ +----------+ +-------------+ +---------------+
| | | | | | | |
| | | | | | | |
| Title +---->+ Intro +----->+ Conclusions +---->+ Parenthetical |
| | | | | | | |
| | | | | | | |
+------------+ +----------+ +-------------+ +---------------+
beamersubframewhich does something similar for beamer, you could have a look at the source code if you could "borrow" some of its code. (see https://tex.stackexchange.com/a/378650/36296 for an example of the package usage) – samcarter_is_at_topanswers.xyz Jul 24 '17 at 11:43