I'm new to LaTeX and I'm creating slides in beamer and trying to include a PDF document into my slides. After searching the net, I came across this suggestion.
Code: Select all
\setbeamercolor{background canvas}{bg=}
\includepdf[pages={1-5}]{file.pdf}
Code: Select all
\includegraphics[pages={1-5}, width=\textwidth]{file.pdf}
I want to insert all the pages in the PDF document into my presentation. Any suggestions? Thanks in advance.