Presentations and PostersMake the image stay while using "pause"

Beamer, Powerdot and KOMA-Script presentations, Conference posters (a0poster, baposter, tikzposter)
Post Reply
Colin93
Posts: 57
Joined: Mon Apr 04, 2016 2:55 pm

Make the image stay while using "pause"

Post by Colin93 »

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

Code, edit and compile here:
\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}
 
הההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההה
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p

Colin93
Posts: 57
Joined: Mon Apr 04, 2016 2:55 pm

Re: Make the image stay while using "pause"

Post by Colin93 »

:?
User avatar
Johannes_B
Site Moderator
Posts: 4182
Joined: Thu Nov 01, 2012 4:08 pm

Make the image stay while using "pause"

Post by Johannes_B »

I would keep it simple.

Code: Select all

Code, edit and compile here:
\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}
הההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההה
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
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

Re: Make the image stay while using "pause"

Post by Colin93 »

Wow thankyou !
Post Reply