Document ClassesBeamer- title page

Information and discussion about specific document classes and how to create your own document classes.
Post Reply
dhan_latex
Posts: 6
Joined: Wed Jan 02, 2013 10:52 pm

Beamer- title page

Post by dhan_latex »

Hello,

I am new to beamer just started with the first page of the presentation.
i am getting few warnings

Code: Select all

pgfbaseimage.sty: This package is obsolete
hyperref.sty:O: option'pdfpagelabels is turnedoff(hyperref) since \thepage is undefined.'
what do these warning means i could not get?

In addition, i wanted to add logo of my university but could not add it.Ended up with the following erro:

Code: Select all

Package pdftex.def Error: file logo.pdf not found \end{frame}

Code: Select all

begin{document}
\title[Short Title]{Design of processor....}
\author[Lastname]{xyz}
\institute{Department of Electronics and Communication}
\date{04/03/2012}


\begin{frame}
\titlepage
\includegraphics{logo.pdf}
\end{frame}

could you please help me out with this?
Last edited by cgnieder on Fri Jan 04, 2013 11:13 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

Stefan Kottwitz
Site Admin
Posts: 10335
Joined: Mon Mar 10, 2008 9:44 pm

Beamer- title page

Post by Stefan Kottwitz »

Hi Dan,

the hyperref warning can be fixed this way at the beginning of your .tex file:

Code: Select all

\documentclass[hyperref={pdfpagelabels=false}]{beamer}
The warning considering pgfbaseimage.sty can be ignored, but you can get rid of it: if you would put a file with the same name pgfbaseimage.sty into the directory of your .tex document containing just the line \RequirePackage{pgfcore} the warning will disappear.

Some more information about those annoying "default" beamer warnings and fixes can be read here: How to get rid of those beamer warnings. Well, they can be ignored, but also I prefer to fix them to be better able to see the important warnings.

Regarding the logo: put it into the same folder as your .tex document, and take care of correct capitalization of the file name.

Stefan
LaTeX.org admin
dhan_latex
Posts: 6
Joined: Wed Jan 02, 2013 10:52 pm

Re: Beamer- title page

Post by dhan_latex »

Is there any way of adding the professor/guide name in the title page apart from the author name.
User avatar
Stefan Kottwitz
Site Admin
Posts: 10335
Joined: Mon Mar 10, 2008 9:44 pm

Beamer- title page

Post by Stefan Kottwitz »

You could simply add his name in the author field, separated by \\ for the line break:

Code: Select all

\author[Holmes]{Sherlock Holmes\\Advisor: Prof. Moriarty}
Stefan
LaTeX.org admin
Post Reply