Any ideas on how to efficiently allow for selecting out marked slides from a beamer presentation?
I know you can manually select out pages a variety of ways. Ideally, I could put something like
\includethispage={true}
on each page I would want automatically pulled out later, then change a flag in the preamble to only export the special pages if I want when compiling the document, otherwise export all pages?
I would rather not have to mess around with the style file, but that may be the only way to do it...
Thanks!
General ⇒ Include only selected slides using beamer
Include only selected slides using beamer
Last edited by EdGatzke on Tue Dec 14, 2010 10:54 pm, edited 1 time in total.
NEW: TikZ book now 40% off at Amazon.com for a short time.

Include only selected slides using beamer
So now I realize if I am giving students handouts, maybe they need blank spaces where the notes should be so they can fill it in.
This works with a boolean set in the preamble (shownotes) with the following code:
I tried to make this into two new commands, \starthide and \stophide so it would look like:
but \newcommand seems not happy with unmatched { inside the command.
Maybe I am doing it wrong still?
This works with a boolean set in the preamble (shownotes) with the following code:
Code: Select all
\ifthenelse{\boolean{shownotes}}{
Stuff to be shown or hidden here!
This will be shown in the presentation but not the handouts!
}{\vspace{-.4 in}\center{\tiny{Space for Notes Below}}}
Code: Select all
\starthide
Stuff to be shown or hidden here!
This will be shown in the presentation but not the handouts!
\stophide
Maybe I am doing it wrong still?
Include only selected slides using beamer
Beamer has built in mechanisms for this. E.g. a frame beginning with:
will be shown in the presentation but not the handout. There are also mode specifications, e.g.:
See chapter 21 of the beamer user's guide.
Code: Select all
\begin{frame}<handout:0>
Code: Select all
\mode<handout>
Stuff only on the handout goes here.
\mode<presentation>
Stuff only in presentation...
\mode<all>
Back to both...