Tell me more ×
TeX - LaTeX Stack Exchange is a question and answer site for users of TeX, LaTeX, ConTeXt, and related typesetting systems. It's 100% free, no registration required.

I am using the default theme, and use the following to customize the footline,

\useoutertheme{infolines}
\setbeamertemplate{footline}{\hspace*{.5cm}\scriptsize{\insertshorttitle
\hspace*{50pt} \hfill\insertframenumber\hspace*{.5cm}}\\
\vspace{9pt}} 

I don't like it also appears on the title page. Is there a simple way not to show it on the first page?

share|improve this question

1 Answer

up vote 11 down vote accepted

You can redefine footline locally for the title frame; I also modified the framenumber counter so that the frames including the footline start from one:

\documentclass{beamer}

\useoutertheme{infolines}
\setbeamertemplate{footline}{\hspace*{.5cm}\scriptsize{\insertshorttitle
\hspace*{50pt} \hfill\insertframenumber\hspace*{.5cm}}\\
\vspace{9pt}} 

\author{An Author}
\title{The Title}

\begin{document}

{
\setbeamertemplate{footline}{} 
\begin{frame}
  \titlepage
\end{frame}
}
\addtocounter{framenumber}{-1}

\begin{frame}
A frame with footline
\end{frame}

\end{document}
share|improve this answer
Thank you, works like a charm – chuan May 23 '11 at 9:07

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.