I want to insert the logo only on the title page of a beamer presentation. However, it displays on all pages. How can I make these two figures display as logo only in the title page, centered? ... right after the
\author
and before \institute
. I type this in the preamble.
Code: Select all
\logo{%
\includegraphics[scale=.2]{logo1.png}\hspace*{0cm}~%
\includegraphics[scale=.2]{logo2.png}\hspace*{0cm}%
}
Code: Select all
\title{\textbf{Title}}
\author{\textbf{Author}}
\titlegraphic{
\includegraphics[width=1cm]{figuras/logo1UM.png}
\hspace*{0cm}~%
\includegraphics[width=1cm]{figuras/logo2UM.png}
}
\institute{UM}
\date{\footnotesize{julho 2013}}
\author
and \institute
as I need. Any idea to change it? Could anyone please help me?