Document ClassesLogo only on Title Page of Presentation

Information and discussion about specific document classes and how to create your own document classes.
Post Reply
paulosousa
Posts: 90
Joined: Sun Jun 24, 2012 8:48 pm

Logo only on Title Page of Presentation

Post by paulosousa »

Hello,

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}%
}
I also tried this.

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}}
But the logos appears only after the date and not between \author and \institute as I need. Any idea to change it? Could anyone please help me?

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

localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

Logo only on Title Page of Presentation

Post by localghost »

Simply embed the graphics intended for the logo in the \author command and use its optional argument for good measure.

Code: Select all

\documentclass[smaller,professionalfonts]{beamer}
\usepackage[T1]{fontenc}
\usepackage{lmodern}

\author[The Author]{The Author\\[2ex] \includegraphics[scale=0.25]{example-image-a}}
\title{The Title}
\institute{Institution}
\date{Julho 2013}

\begin{document}
\begin{frame}[plain]
  \titlepage
\end{frame}
\end{document}
Details about the title can be read in the beamer user guide.


Remarks:
  • You will get warnings, but the document looks fine.

Thorsten
Attachments
example.png
example.png (5.08 KiB) Viewed 35246 times
paulosousa
Posts: 90
Joined: Sun Jun 24, 2012 8:48 pm

Re: Logo only on Title Page of Presentation

Post by paulosousa »

perfect, here is what I need. many many thanks for all the help
Post Reply