[Tex/LaTex] How to include existing PDF slides into the Beamer presentation

beamerpdf

Is there a way to incorporate some slides into an existing slide into my Beamer presentation?

Say, I want to put slide 2 in file A (a Beamer PDF file) into my Beamer presentation, can this be done?

PS: file A is a PDF and does not have bounding box.

Best Answer

To import a slide from another beamer presentation as a "picture", you can use pdfpages. You'll have to \setbeamercolor{background canvas}{bg=} as explained in this answer because only a white frame will be shown otherwise:

\documentclass{beamer}
\usepackage{pdfpages}
\begin{document}
\begin{frame}
Content
\end{frame}
{
\setbeamercolor{background canvas}{bg=}
\includepdf[pages=3]{filea.pdf}
}
\end{document}

However, if you use head- or footlines or even a different theme in your existing presentation, this will probably not fit snugly. In this case, a better solution would be to actually import the source code of the existing presentation, which can be done using the docmute package in combination with the \againframe command:

Suppose this is your existing presentation filea.tex: You need to give the slides you want to import a name using the label option of the frame environment, like this:

\documentclass{beamer}
\begin{document}
\begin{frame}[label=myframe]
Frame to be included
\end{frame}
\end{document}

Then you can use this code in your new presentation:

\documentclass{beamer}

\usepackage{docmute}
\makeatletter
\newcommand*{\loadpresentation}[1]{{\beamer@inlecturefalse\input{#1}}}
\makeatother

\begin{document}
\loadpresentation{filea.tex}
\begin{frame}
  The new presentation
\end{frame}
\againframe{myframe}
\end{document}

Issuing \loadpresentation{filea.tex} imports the frames from your existing presentation without displaying them. You can insert them wherever needed using \againframe with the label you chose in filea.tex. The command \loadpresentation should be used someplace after \begin{document} (but before you actually include a frame from this presentation, of course).

This works roughly the same as if you'd actually copy the source code of the frame from the existing presentation, so things like overlays etc. are taken over.