I want my points to appear one after another so I'm using \pause. However I have 2 images that I want to appear with the 1st point and stay... Could you help me ?
\documentclass{beamer} \usepackage{graphicx} \usepackage{array} \usepackage{multirow} \usepackage{capt-of} \usepackage{tabu} \usepackage{xcolor} \begin{document} \title{Simple Beamer Class} \author{Sascha Frank} \date{\today} \frame{\titlepage} %\frame{\frametitle{Table of contents}\tableofcontents} \section{Subsection no.1.1 } \frame{ \begin{columns} \begin{column}{0.7\textwidth} \begin{block}{Introducing the project "Explodrone"} \begin{itemize} \item MAV for indoor exploration, with a low aerodynamic footprint \pause \item Joint research project of ONERA and ISAE-SUPA\'{E}RO. \pause \item Volume $\sim 1L$ \pause \item Speed in hover $\sim 4.95 m.s^{-1}$ (cf. Froude's theorem for a rotational speed of $6000 RPM$) \end{itemize} \end{block} \end{column} \begin{column}{0.6\textwidth} \begin{figure}[h!] \begin{minipage}[h!]{.5\linewidth} \begin{center} \includegraphics[scale=0.1]{b2.jpg}\\ {\footnotesize \emph{Explodrone during an experiment}} \end{center} \end{minipage} \hfill \begin{minipage}[h!]{.5\linewidth} \begin{center} \includegraphics[scale=0.1]{b1.jpg}\\ {\footnotesize \emph{Initial CAD version}} \end{center} \end{minipage} \end{figure} \end{column} \end{columns} } \end{document}