[Tex/LaTex] How to put 3 figures in one slide in beamer

beamer

I would like to create a slide in beamer and put 3 figures inside it with some text as show in the figure below.

I tried this but it does not work.

\frame{\frametitle{Examples}
    \begin{itemize}
        \item[]<2-3> text 1
        \item[]<3> text 2
    \end{itemize}
    \includegraphics[height=.4\textheight,width=.4\textwidth]{fig1}
    \includegraphics[height=.4\textheight,width=.4\textwidth]{fig2}
    \includegraphics[height=.4\textheight,width=.4\textwidth]{fig3}
}

enter image description here

Best Answer

One possibility using a combination of columns and minipages of fixed height:

enter image description here

The code:

\documentclass{beamer}

\begin{document}

\begin{frame}
\begin{columns}
\column{0.5\textwidth}
\begin{minipage}[c][0.4\textheight][c]{\linewidth}
  \centering
  \includegraphics[width=0.8\linewidth]{example-image-a}
\end{minipage}
\begin{minipage}[c][0.4\textheight][c]{\linewidth}
  \centering
  \includegraphics[width=0.8\linewidth]{example-image-b}
\end{minipage}
\column{0.5\textwidth}
\begin{minipage}[c][0.4\textheight][c]{\linewidth}
  \begin{enumerate}
  \item First.
  \item Second.
  \item Third.
  \end{enumerate}
\end{minipage}
\begin{minipage}[c][0.4\textheight][c]{\linewidth}
  \centering
  \includegraphics[width=0.8\linewidth]{example-image-c}
\end{minipage}
\end{columns}
\end{frame}

\end{document}
Related Question