I'm writing my Ms.C. defense presentation on beamer and I have a couple of questions.
I want to create a slide where is divided to three parts. On the top, there are two columns (left and right). On the left there is some text and on the right there is a figure. At the bottom, I wand to have a wide table which spreads over the whole page. I have added the code of the slide at the end of the message. I have also tried to use the columns environment with the same results
I have two problems.
1. I want the figure to be in the middle (regarding the y scale) but the figure sticks to the top. I think it's because of the overlayarea environment.
2. The table doesn't show on the page.
Thank you.
Yotam
Code: Select all
\begin{frame}
\frametitle{KIE}
\begin{minipage}{0.45\textwidth}
\begin{itemize}
\item <1-> The proton transfer or deuterium from APMS and APBS was measured in different temperatures in \ce{H2O} or \ce{D2O}.
\item <2-> The kinetic isotope effect doesn't seem to change greatly between the moelcules.
\end{itemize}
\end{minipage}
\begin{minipage}{0.45\textwidth}
\begin{center}
\begin{overlayarea}{\textwidth}{\textheight}
\only<2>{ \includegraphics[width=\textwidth]{images/end_exp/KIE_all.pdf}}
\end{overlayarea}
\end{center}
\end{minipage} \newline
\begin{minipage}{\textwidth}
\begin{tabular}{ccccc}
Molecule & pK$_\text{a}*$ &$\tau_{\text dis}*$ & $k_{\ce{H}} / k_{\ce{D}}$ & E$_{\text a}*$ (\ce{H2O})/ E$_{\text a}*$ (\ce{D2O})\\
1-AP & -1.6 & 1.9 $ns$ & 4.0 & 4.3/5.3 $kcal/mol$ \\
APMS & -6.1 & 0.41 $ns$ & 4.2 & 3.4/4.1 $kcal/mol$ \\
APBS & -6.9 & 0.06 $ns$ & 5.0 & 1.8/3.1 $kcal/mol$ \\
APTS & -8.0 & 0.027 $ns$ & 5.7 & 1.2/2.2 $kcal/mol$
\end{tabular}
\end{minipage}
\end{frame}