I have some trouble with margins in multi-column layout beamer slides. If put the following snippet in a non-rounded theme like "Rochester", you will see that
- the boxes of the first row have different margins than the boxes of the 2nd row (the 1st row has an "indent", which also affects the position of the central line between the boxes)
- the rightmost margin differs from the leftmost margin (the left margin is smaller than the right one, which optically goes away when one uses shadows)
any ideas?
\begin{frame}[t]
\frametitle{...}
\begin{columns}[T]
\column{.50\textwidth}
\begin{block}{...}
...
\end{block}
\column{.50\textwidth}
...
\end{columns}
\vspace{3mm}
\begin{columns}[T]
\column{.50\textwidth}
\begin{block}{...}
...
\end{block}
\column{.50\textwidth}
\begin{block}{...}
...
\end{block}
\end{columns}
\end{frame}