different overlay specification in different beamer modes?
- by Matthew Leingang
I have a beamer frame with about 150 slides on it. I want article and handout mode to only show frame 92.
Reading section 8.6.2 of the beamer manual it seems like I should be able to do something like
\begin{frame}<handout:92>
...
\end{frame}
but that seems to have no effect--all 150 slides are set in handout mode, overlaying (making the result unreadable).
I have gotten the effect I want by taking all commands within the frame that have an overlay specification and adding "| handout:0" to make them not appear in handout mode. Annoying, but works. But for my 150-slide frame the different slides are generated by a PGF \foreach loop so I can't code slide 92 differently from the rest.
But can I do this at the frame's overlay specification?