Document Classes ⇒ Beamer - change theme and background
Beamer - change theme and background
I was just wondering if anybody knows whether there is a way to change the beamer theme within a document, say after half of the presentation?
Also, does anybody know the difference between the following two codes?
1. \beamertemplateshadingbackground{brown!70}{yellow!10}
2. \setbeamertemplate{background canvas}[vertical shading][bottom=brown!70,top=yellow!10]
I want to change the background of some of my slides. I realised when I use code 1 it will also change the background for blocks in beamber but when I use code 2 the background of the blocks won't change.
Cheers
Martin
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
Re: Beamer - change theme and background
Beamer - change theme and background
I think you can switch themes and so on mid-way, however. I'll try it out when I get a chance. A bit busy at the moment.
Re: Beamer - change theme and background
I was thinking about just merging two different pdf documents but I thought Beamer would be a more flexible in that way. But the pdfpages option sounds interesting. Will have a look in it but please let me know if you found any other way directly in Beamer.
-
- Posts: 3
- Joined: Sat Nov 13, 2010 8:48 pm
Re: Beamer - change theme and background
can you please show how you use pdfpages to insert pages in beamer? I read the pdfpages manual and tried but I get errors.
thank you,
cristian
Beamer - change theme and background
Here's an example. First I created a beamer presentation in the Warsaw theme. Just a minimal one for the sake of the example.cprisacariu wrote:Hello,
can you please show how you use pdfpages to insert pages in beamer? I read the pdfpages manual and tried but I get errors.
thank you,
cristian
Code: Select all
\documentclass{beamer}
\usetheme{Warsaw}
\begin{document}
\begin{frame}{Warsaw Theme}
This has Warsaw theme.
\end{frame}
\end{document}
Then compiled it to warsaw.pdf.
Then I created another beamer presentation using the AnnArbor theme, but inserted this in the middle:
Code: Select all
\documentclass{beamer}
\usepackage{pdfpages}
\usetheme{AnnArbor}
\begin{document}
\begin{frame}{AnnArbor}
This has AnnArbor theme.
\end{frame}
{
\setbeamercolor{background canvas}{bg=}
\includepdf[pages=1]{warsaw.pdf}
}
\begin{frame}{Another AnnArbor}
Another frame in AnnArbor.
\end{frame}
\end{document}
Obviously you can use whatever themes you want.
The result looks like this:
-
- Posts: 3
- Joined: Sat Nov 13, 2010 8:48 pm
Re: Beamer - change theme and background
Thank you so very much.
Good that are patient people like you with so stupid like me

all the best,
cristian
Re: Beamer - change theme and background

