I'm doing beamer slides in the 16:9 aspect ratio, so I want to use a more horizontal flow than I was when I had 4:3 slides. For example, I'd like to place a theorem and its proof side-to-side rather than the proof below the theorem. As in:
\documentclass[aspectratio=169]{beamer}
\usepackage{tikz}
\usetheme{Rochester}
\begin{document}
\begin{frame}{There is no largest prime number}
\begin{columns}
\begin{column}[t]{0.45\textwidth}
\begin{theorem}
There are infinitely many primes.
\end{theorem}
\end{column}
\begin{column}[t]{0.45\textwidth}
\begin{proof}
Suppose $p$ were the largest prime number.
Let $q$ be the product of the first $p$ numbers.
Then $q+1$ is not divisible by any of them.
Thus it is prime, but is bigger than $p$.
This is a contradiction.
\end{proof}
\end{column}
\end{columns}
\end{frame}
\end{document}
Here is the result:

As you can see, the theorem box is a lot shorter than the proof box and the effect is kind of ugly. Is there a nice way to add vertical space to the shorter one to make it the same height as the longer one?


:-)– Matthew Leingang Jan 26 '11 at 14:01:-)) – Hendrik Vogt Jan 26 '11 at 14:13<div>s in html and I was surprised/disappointed it wasn't easier – Seamus Jan 26 '11 at 15:28