Page Layout ⇒ beamer: custom page number
-
- Posts: 1
- Joined: Tue Jan 20, 2009 5:05 pm
beamer: custom page number
is there any way i can change page numbering in the boadilla theme of beamer so that it shows only the current page number and not `page X / total number of pages'. That is for slide 18 out of 34 it should say just '18' and not '18/34'.
thanks a lot
j
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
- Stefan Kottwitz
- Site Admin
- Posts: 10360
- Joined: Mon Mar 10, 2008 9:44 pm
beamer: custom page number
welcome to the board!
This modified infoline theme would help:
Code: Select all
\defbeamertemplate*{footline}{my theme}
{
\leavevmode%
\hbox{%
\begin{beamercolorbox}[wd=.333333\paperwidth,ht=2.25ex,dp=1ex,center]{author in head/foot}%
\usebeamerfont{author in head/foot}\insertshortauthor~~(\insertshortinstitute)
\end{beamercolorbox}%
\begin{beamercolorbox}[wd=.333333\paperwidth,ht=2.25ex,dp=1ex,center]{title in head/foot}%
\usebeamerfont{title in head/foot}\insertshorttitle
\end{beamercolorbox}%
\begin{beamercolorbox}[wd=.333333\paperwidth,ht=2.25ex,dp=1ex,right]{date in head/foot}%
\usebeamerfont{date in head/foot}\insertshortdate{}\hspace*{2em}
\insertframenumber{}\hspace*{2ex}
\end{beamercolorbox}}%
\vskip0pt%
}