-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbeamerTemplate.tex
More file actions
47 lines (39 loc) · 1002 Bytes
/
beamerTemplate.tex
File metadata and controls
47 lines (39 loc) · 1002 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
\documentclass{mybeamer}
% Info
\begin{document}
\title{Title}
\author{Erica Moszkowski}
\institute{If you want one}
\date{\today}
% Footer
\setbeamertemplate{footline}
{
\leavevmode%
\hbox{%
\begin{beamercolorbox}[wd=.4\paperwidth,ht=2.25ex,dp=1ex,center]{author in head/foot}%
\usebeamerfont{author in head/foot}\insertshortauthor
\end{beamercolorbox}%
\begin{beamercolorbox}[wd=.6\paperwidth,ht=2.25ex,dp=1ex,center]{title in head/foot}%
\usebeamerfont{title in head/foot}\insertshorttitle\hspace*{3em}
\insertframenumber{} / \inserttotalframenumber\hspace*{1ex}
\end{beamercolorbox}}%
\vskip0pt%
}
% Fill blocks
\setbeamertemplate{blocks}[block=fill]
% BEGIN DOCUMENT
\begin{document}
\begin{frame}
\titlepage
\end{frame}
% Table of contents
\begin{frame}
\frametitle{Outline}
\tableofcontents
\end{frame}
\section{Section}
\begin{frame}[fragile] % fragile is necessary for including code
\frametitle{Slide title}
Words words words
\end{frame}
\end{document}