I have a slide with three blocks, say 1, 2, 3a, and 3b, where 3a and 3b have exactly the same height (they are the same equation with some change of variable). I want to use \pause and \only to obtain the following:
- only 1
- (click) -> only 1 and 2
- (click) -> 1, 2, and 3a
- (click) -> 1, 2, and 3b
while maintaining the exact same positioning of each block as in the last two slides. Here is my tentative example: what happens is that Block 1 and Block 2 appear in the center of the slide as no third block is going to appear.
\begin{frame}[c]{Title}
Block 1
\pause
Block 2
\pause
\only<3>{
Block 3a
}
\only<4>{
Block 3b
}
\end{frame}
Block 3bis set belowBlock 3a... perhaps I misinterpret the OP, but I think he wantsBlock 3bto replaceBlock 3aexactly... – darthbith Jul 03 '14 at 12:47\onslide– Jul 03 '14 at 13:02