![Cómo hacer transparente solo un bloque en una diapositiva](https://rvso.com/image/476793/C%C3%B3mo%20hacer%20transparente%20solo%20un%20bloque%20en%20una%20diapositiva.png)
Tengo dos bloques en un tobogán. Simplemente quiero que un bloque se desvanezca. yo no sé por qué
\setbeamercovered{transparent}
No funciona.
Respuesta1
Esto debería funcionar:
\documentclass{beamer}
\begin{document}
\begin{frame}{Frame1}
\setbeamercovered{transparent}
\begin{block}{Fade this}<0>
Some block on first slide
\end{block}
\begin{block}{Don't fade this}<1>
Some other block
\end{block}
\end{frame}
\end{document}
Respuesta2
¿Algo como esto?
\documentclass{beamer}
\begin{document}
\begin{frame}{Frame1}
\setbeamercovered{transparent}
\begin{block}{Fade this}<1>
Some block on first slide
\end{block}
\begin{block}{Don't fade this}<1-2>
Some other block
\end{block}
\end{frame}
\end{document}