I'm not sure if this is the right place to ask this question, but here I go :)
I'm preparing a presentation using Beamer, and I'd like to place a "block" box over the content of a slide.
For example, consider this two-column slide frame:
Code: Select all
\begin{frame}{Frame title}
\begin{columns}[c]
\column{0.5\textwidth}
\begin{itemize}
\item[-] First item
\item[-] Second item
\end{itemize}
\begin{block}{Hello!}<2->
This is the block that I want to
be over everything when I hit <Enter>! :)
\end{block}
\column{0.5\textwidth}
\begin{figure}
\flushleft
\includegraphics{image.png}
\end{figure}
\end{columns}
\end{frame}
I googled this "problem", but I couldn't find any solution. Apparently, I'm the first one who wants to do that :D
I appreciate any help. Thanks in advance!
Alex.