Beamer, Powerdot and KOMA-Script presentations, Conference posters (a0poster, baposter, tikzposter)
Colin93
Posts: 57 Joined: Mon Apr 04, 2016 2:55 pm
Post
by Colin93 » Tue Jun 21, 2016 11:27 am
Hi everyone !
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 ?
Code: Select all
\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}
Johannes_B
Site Moderator
Posts: 4182 Joined: Thu Nov 01, 2012 4:08 pm
Post
by Johannes_B » Thu Jun 23, 2016 7:21 pm
I would keep it simple.
Code: Select all
\documentclass{beamer}
\usepackage{graphicx}
%\usepackage{array}
%\usepackage{multirow}
%\usepackage{capt-of}
%\usepackage{tabu}
%\usepackage{xcolor}
\usepackage{siunitx}
\DeclareSIUnit{\rpm}{RPM}
\begin{document}
\frame{
\begin{columns}
\begin{column}{0.3\textwidth}
\centering
\includegraphics[scale=0.1]{example-image-a.jpg}\\
{\footnotesize \emph{Explodrone during an experiment}\medbreak}
\includegraphics[scale=0.1]{example-image-b.jpg}\\
{\footnotesize \emph{Initial CAD version}\par}
\end{column}
\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 \SI{\sim 1}{\liter}
\pause
\item Speed in hover \SI{\approx 4.95}{\meter\per\second} (cf. Froude's theorem for a rotational speed of \SI{6000}{\rpm})
\end{itemize}
\end{block}
\end{column}
\end{columns}
}
\end{document}
With TIkz, you probably can achieve what you want, aber da würde ich mir an deiner Stelle keinen abbrechen.
The smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.
Colin93
Posts: 57 Joined: Mon Apr 04, 2016 2:55 pm
Post
by Colin93 » Fri Jun 24, 2016 11:28 am
Wow thankyou !