[Tex/LaTex] How to add more than one logo to the beamer presentation

beamergraphics

My institute requires to put three logos to all presentations. How can I add more than one logo to my beamer presentation?

Best Answer

Beamer provides \logo{<logo code>} to set the logo(s). You could just add all three logos in there using three \includegraphics command (or PGF image commands). Where they are placed depends on your chosen scheme. If you want them a little larger on the title page you can insert the defined logo(s) manually \insertlogo e.g. inside a \scalebox.

The following code adds three scaled logos with one space as a separator into the right border. The default (blank) scheme puts them into the lower right corner.

\documentclass{beamer}

\author{Me}
\title{Presentation}
\logo{%
    \includegraphics[width=1cm,height=1cm,keepaspectratio]{logo1}~%
    \includegraphics[width=1cm,height=1cm,keepaspectratio]{logo2}~%
    \includegraphics[width=1cm,height=1cm,keepaspectratio]{logo3}%
}
\institute{Three Kings\\\scalebox{2}{\insertlogo}}
\begin{document}
\frame{\maketitle}
\frame{text}
\frame{}

\end{document}

Result