Beamer で左側に画像、右側にテキスト (数式を含む) を水平に揃えるにはどうすればよいでしょうか?

Beamer で左側に画像、右側にテキスト (数式を含む) を水平に揃えるにはどうすればよいでしょうか?

左側にグラフの画像、右側にグラフの背後にある数式を配置したプレゼンテーションを行い、それらを水平に揃えたいと思っています。よろしくお願いします。

答え1

columns環境の例:

ここに画像の説明を入力してください

\documentclass{beamer}
\usepackage{tikz}
\usetikzlibrary{datavisualization,datavisualization.formats.functions}
\begin{document}

\begin{frame}
  A graph and the mathematics behind this graph:

  \begin{columns}[T]
    \column{.45\linewidth}

    \centering
    \begin{tikzpicture}[scale=.7]
      \datavisualization [scientific axes, visualize as smooth line]
      data [format=function] {
        var x : interval [-2:2];
        func y = \value x*\value x + 1;
      };
    \end{tikzpicture}

    \column{.45\linewidth}

    \begin{equation*}
      y = x^2 + 1
    \end{equation*}
  \end{columns}

\end{frame}
\end{document}

関連情報