O seguinte código:
\begin{frame}\frametitle{Title}
\begin{itemize}[<+->]
\item 1st
\item 2nd
\end{itemize}
\vfill\pause
Bottom
\end{frame}
produz 4 slides (em vez de 3):
Title
e1st
Title
,1st
,2nd
- Idêntico ao anterior
- Tudo (
Title
,1st
,2nd
,Bottom
)
Se eu remover \vfill\pause
, recebo 2 slides (em vez de 3) e bottom
aparece emambos:
Title
,1st
,Bottom
- Tudo (
Title
,1st
,2nd
,Bottom
)
Como consigo 3 slides?
Responder1
Como Hafid Boukhoulda, sugiro usar, \only
mas com argumentos <.(1)>
que resolvem o problema. Você pode pensar nisso como “só agora”. Aprendi esse truque com Samcarter.
\documentclass{beamer}
\begin{document}
\begin{frame}[t]
\frametitle{Title}
\begin{itemize}[<+->]
\item 1st
\item 2nd
\end{itemize}
\vfill
\only<.(1)> {Bottom}
\end{frame}
\end{document}
Com \uncover
você pode descartar o alinhamento [t]
que apresentei para evitar saltos.
\documentclass{beamer}
\begin{document}
\begin{frame}
\frametitle{Title}
\begin{itemize}[<+->]
\item 1st
\item 2nd
\end{itemize}
\vfill
\uncover<.(1)> {Bottom}
\end{frame}
\end{document}
Responder2
\documentclass{beamer}
\begin{document}
\begin{frame}\frametitle{Title}
\begin{itemize}[<+->]
\item 1st
\item 2nd
\end{itemize}
%\pause
\vfill
\only<3> {Bottom}
\end{frame}
\end{document}