1

I have the following beamer presentation:

\documentclass{beamer}
\setbeamertemplate{navigation symbols}{}
\begin{document}

\section{First} \begin{frame}[label=A] \noindent\includegraphics[width=\framewidth]{example-image-a.jpg} \end{frame}

\section{Second} \begin{frame}[label=B] \noindent\includegraphics[width=\framewidth]{example-image-b.jpg} \end{frame}

\section{Third} \begin{frame}[label=C] \noindent\includegraphics[width=\framewidth]{example-image-c.jpg} \end{frame}

\section{Fourth} \begin{frame}[label=D] \noindent\includegraphics[width=\framewidth]{example-image} \end{frame}

\begin{frame} \frametitle{Graphical abstract}

I would like here to have a reduced view of frames A, B, C and D on one frame. \end{frame} \end{document}

The last frame should be a kind of graphical abstract of the presentation, i.e., I would like it to contain a reduced view of frames A, B, C, and D on one frame.

How should I achieve that?

Following the comments by Sam Carter below, I have tried the following simple and rogue solution :

\documentclass{beamer}
\setbeamertemplate{navigation symbols}{}
\begin{document}

\section{First} \begin{frame}[label=A] \noindent\includegraphics[width=\framewidth]{example-image-a.jpg} \end{frame}

\section{Second} \begin{frame}[label=B] \noindent\includegraphics[width=\framewidth]{example-image-b.jpg} \end{frame}

\section{Third} \begin{frame}[label=C] \noindent\includegraphics[width=\framewidth]{example-image-c.jpg} \end{frame}

\section{Fourth} \begin{frame}[label=D] \noindent\includegraphics[width=\framewidth]{example-image} \end{frame}

\begin{frame} \frametitle{Graphical abstract}

I would like here to have a reduced view of frames A, B, C and D one one frame. \end{frame}

\begin{frame} \scalebox{0.2}{\againframe{A}}\scalebox{0.2}{\againframe{B}} \end{frame} \end{document}

enter image description here

that gives me almost what I want, except that beamer is adding a lot of junk between my scaled frames.

Any ideas along thses line or am I being too rogue with beamer.

Denis
  • 5,267

1 Answers1

-1

This code places the previous four frames into minipages, each using \againframe. Its width is controlled by the width of the minipage. Notice that the assembly is outside of a frame.

b

\documentclass{beamer}
\setbeamertemplate{navigation symbols}{}

\begin{document}

\section{First}
\begin{frame}[label=A]
    \noindent\includegraphics[width=\framewidth]{example-image-a.jpg}
\end{frame}

\section{Second}
\begin{frame}[label=B]
    \noindent\includegraphics[width=\framewidth]{example-image-b.jpg}
\end{frame}

\section{Third}
\begin{frame}[label=C]
    \noindent\includegraphics[width=\framewidth]{example-image-c.jpg}
\end{frame}

\section{Fourth}
\begin{frame}[label=D]
    \noindent\includegraphics[width=\framewidth]{example-image}
\end{frame}

\begin{frame}
    \frametitle{Graphical abstract}

    I would like here to have a reduced view of frames A, 
    B, C and D one one frame.
\end{frame}
% **********             added <<<<<<<<<<<<<<<<<<<<<<<<<<<
\vspace*{-1cm}
\begin{minipage}{0.2\framewidth}
\againframe{A}
\end{minipage}\hfill
\begin{minipage}{0.2\framewidth}
\againframe{B}
\end{minipage}\hfill
\begin{minipage}{0.2\framewidth}
\againframe{C}
\end{minipage}\hfill
\begin{minipage}{0.2\framewidth}
\againframe{D}
\end{minipage}

\end{document}

Simon Dispa
  • 39,141