Page Layoutbeamer | Different Frames with different Logos

Information and discussion about page layout specific issues (e.g. header and footer lines, page formats, page numbers).
Post Reply
ijlgarces
Posts: 2
Joined: Sun Jan 23, 2011 9:15 am

beamer | Different Frames with different Logos

Post by ijlgarces »

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
Last edited by ijlgarces on Wed Jan 26, 2011 4:52 am, edited 2 times in total.

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p

frabjous
Posts: 2064
Joined: Fri Mar 06, 2009 12:20 am

beamer | Different Frames with different Logos

Post by frabjous »

A minimal working example would be nice here.
ijlgarces
Posts: 2
Joined: Sun Jan 23, 2011 9:15 am

beamer | Different Frames with different Logos

Post by ijlgarces »

I think I have solved my problem myself. I used the following syntax.

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
}
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.
Post Reply