How to create slides like this? Is there some template that offers this structure (slide title on top, person name, talk title, page number on bottom)?
Asked
Active
Viewed 365 times
0
1 Answers
2
Here is a simple modification to the default beamer theme (which normally has no footline at all, so we add one in).
\documentclass{beamer}
\setbeamertemplate{navigation symbols}{}
\setbeamertemplate{footline}
{
\leavevmode%
\hbox{%
\begin{beamercolorbox}[wd=.333333\paperwidth,ht=2.25ex,dp=1ex,left]{title in head/foot}%
\hspace*{2ex}\insertauthor
\end{beamercolorbox}%
\begin{beamercolorbox}[wd=.333333\paperwidth,ht=2.25ex,dp=1ex,center]{title in head/foot}%
\inserttitle
\end{beamercolorbox}%
\begin{beamercolorbox}[wd=.333333\paperwidth,ht=2.25ex,dp=1ex,right]{title in head/foot}%
\insertframenumber{} / \inserttotalframenumber\hspace*{2ex}
\end{beamercolorbox}}%
\vskip0pt%
}
\title{The Riemann hypothesis in 3 slides}
\author{A.N. Author}
\date{10/02/2020}
\begin{document}
\begin{frame}
\maketitle
\end{frame}
\begin{frame}
\frametitle{Title of frame}
Text in frame
\end{frame}
\end{document}
Note: I also removed the "navigation symbols" from the page (if you want them back, simply comment out the line \setbeamertemplate{navigation symbols}{}).
If you want to make other changes (e.g. to the colour of the title), I recommend this post, which has various links to other places too: Design a custom Beamer theme from scratch
rbrignall
- 1,564
-
How can I change the font size of the footer (name, title, page numbers)? – PlsWork Feb 11 '20 at 00:05
-
1You could specify it manually in the three
beamercolorboxes, but the best way is to adjust the styling in the preamble, like this (e.g.):\setbeamerfont{footline}{size=\scriptsize,family=\ttfamily}– rbrignall Feb 11 '20 at 09:59

boadillatheme to what you want? See here: http://deic.uab.es/~iblanes/beamer_gallery/individual/Boadilla-default-default.html – rbrignall Feb 10 '20 at 11:27\setbeamertemplate{footline}{...}is the bit that needs changing... give me a few minutes and I'll try to rustle something up... – rbrignall Feb 10 '20 at 11:36