Beamer - in columns exposing picture in one column before and after text in other column

You can use \onslide:

\PassOptionsToPackage{demo}{graphicx}
\documentclass{beamer}


\begin{document}

\begin{frame}
\frametitle{Prva probna valna funkcija}
Varijacionu metodu započinjemo sljedećom probnom valnom funkcijom\pause
\begin{columns}
    \begin{column}{0.5\textwidth}
    \begin{itemize}
    \item\onslide<1->{\begin{equation*}
    \varphi_1(x)=\left(\frac{b}{\sqrt{\pi}}\right)^{1/2}e^{-\frac{b^2}{2}x^2}
    \end{equation*}}
    \item\onslide<4>{Očekivana vrijednost energije\pause
    \begin{equation*}
    E(b)=\langle\varphi_1|\hat{H}|\varphi_1\rangle,
    \end{equation*}}
    \end{itemize}
    \end{column}
    \begin{column}{0.5\textwidth}
    \onslide<2->{\centerline{\includegraphics[width=0.9\textwidth]{valfun1.eps}}}
    \end{column}
\end{columns}
\end{frame}

\end{document}

I used the line \PassOptionsToPackage{demo}{graphicx} to make my example compilable for everyone; don't include that line in your actual code.


You can add overlay specifications to many environments and macros—column and \item in particular—in beamer (such commands/environments are called overlay specification aware). This eliminates the need for many \onslide macros. So Gonzalo's code can be be trimmed down a tiny bit:

\documentclass[draft]{beamer}
\begin{document}
\begin{frame}
\frametitle{Prva probna valna funkcija}
Varijacionu metodu započinjemo sljedećom probnom valnom funkcijom
\begin{columns}
    \begin{column}{0.5\textwidth}
    \begin{itemize}
    \item<2->\begin{equation*}
    \varphi_1(x)=\left(\frac{b}{\sqrt{\pi}}\right)^{1/2}e^{-\frac{b^2}{2}x^2}
    \end{equation*}
    \item<4-> Očekivana vrijednost energije
    \uncover<5->{\begin{equation*}
    E(b)=\langle\varphi_1|\hat{H}|\varphi_1\rangle,
    \end{equation*}}
    \end{itemize}
    \end{column}
    \begin{column}<3->{0.5\textwidth}
    \centerline{\includegraphics[width=0.9\textwidth]{valfun1.eps}}
    \end{column}
\end{columns}
\end{frame}
\end{document}

(The draft option makes it compile without the graphics file.)

The specification <n-> means "show this stuff from slide n onwards." The only case I couldn't attach it to a command or environment was the equation* environment you wanted to uncover. So I used \uncover.

You can also use incremental overlay specifications where <+-> means "add one to the slide count, then show this stuff from slide n onwards". I kind of like this because it means you can insert stuff and you don't have to change all then umbers. If you just put these everywhere you had <n-> above you'd back at the original problem, however: stuff gets uncovered in the order it's coded, not the order you want. But a number in parentheses after the + means to add that much more (or less) if the number is negative, to the slide count. So you can also do it this way:

\documentclass[draft]{beamer}
\begin{document}
\begin{frame}
\frametitle{Prva probna valna funkcija}
Varijacionu metodu započinjemo sljedećom probnom valnom funkcijom
\begin{columns}
    \begin{column}<+->{0.5\textwidth}
    \begin{itemize}
    \item<+->\begin{equation*}
    \varphi_1(x)=\left(\frac{b}{\sqrt{\pi}}\right)^{1/2}e^{-\frac{b^2}{2}x^2}
    \end{equation*}
    \item<+(1)-> Očekivana vrijednost energije
    \uncover<+(1)->{\begin{equation*}
    E(b)=\langle\varphi_1|\hat{H}|\varphi_1\rangle,
    \end{equation*}}
    \end{itemize}
    \end{column}
    \begin{column}<+(-2)->{0.5\textwidth}
    \centerline{\includegraphics[width=0.9\textwidth]{valfun1.eps}}
    \end{column}
\end{columns}
\end{frame}
\end{document}

To figure out how this works, first put in <+-> everywhere. I put in a dummy one at the first column because I need to increment the slide count from zero. We want to move the picture up two steps in the sequence—before the second \item and the \uncovered equation*. So we subtract two from the default slide count there. But we also need to shift the second \item and the \uncovered equation* down to make room for the picture (otherwise the graphic and the second \item come out at the same time.) So we add one in addition to the increment there.

The advantage is that if I insert stuff later one before the shifted graphic or after the last \uncovered equation* I don't have to adjust the overlay specifications. But something in between those would require adjustment.

(Read Chapter 9 of the 3.10 beamer manual for this. You might have to read it several times, actually. \smiley)

Tags:

Beamer

Columns