I am new here, and I just started using beamer documentclass.
I would like to use different logos to different frames. Moreover, I would also like to control what logo to use to a particular frame. How can I do all these?
I am using \usetheme{default}, \usepackage{beamerfoils} and \MyLogo in my document. Are there other packages I need to use?
Thank you in advance,
Ian
Page Layout ⇒ beamer | Different Frames with different Logos
beamer | Different Frames with different Logos
Last edited by ijlgarces on Wed Jan 26, 2011 4:52 am, edited 2 times in total.
NEW: TikZ book now 40% off at Amazon.com for a short time.

beamer | Different Frames with different Logos
A minimal working example would be nice here.
beamer | Different Frames with different Logos
I think I have solved my problem myself. I used the following syntax.
It worked for what I want now. But I do not have any idea yet how to control the logo per frame. That will be for the future maybe.
Code: Select all
\usepackage{beamerfoils}
\usepackage{bigintcalc}
\MyLogo{%
\ifnum\bigintcalcMod{\insertframenumber}{2}=0
\includegraphics[width=25mm]{LOGO1.pdf}
\else
\includegraphics[width=25mm]{LOGO2.pdf}
\fi
}