blob: 5f557b2d635a6c1474b5a1a1c988ddd4e9ddf2c4 (
plain)
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
|
%% If you have any problems using this template, please contact the author: %%
%% timhosgood@gmail.com %%
%% Modified by Mohit Agarwal <mohit.agarwal@sky.com><mohit.uk>[2021]
\documentclass[aspectratio=169]{beamer}
%\usepackage{charter}
\usepackage{tikz}
\usepackage{graphicx}
\usepackage{amsmath}
\usepackage{amssymb}
\beamertemplatenavigationsymbolsempty % remove navigation bar
\setbeamertemplate{headline}
%% Title slide formatting %%
\setbeamerfont{subtitle}{size=\tiny}
\setbeamertemplate{title page}{
\begin{center}
\textit{\Large\inserttitle}
\vspace{20pt}
\insertauthor
\vspace{20pt}
\textbf{\small\insertinstitute}
\small\insertdate
\end{center}
}
%% General slide formatting %%
\definecolor{oxfordblue}{RGB}{4,30,66}
\setbeamertemplate{frametitle}{
\begin{flushleft}
\textit{\textbf{\large\color{oxfordblue}\insertframetitle}}
\normalsize\color{oxfordblue}\insertframesubtitle
\end{flushleft}
}
%% Information (author, title, etc.) %%
\title[Paper planes]{Paper Planes} % short title, long title
\author{
Mohit Agarwal
}
\institute{
}
\date[]{Last modified July 2021} % short date for footer
\usefonttheme{serif}
%% Content of slides %%
\begin{document}
\maketitle
\begin{frame}
\frametitle{Why does a plane fly?}
Discuss
\begin{itemize}
\item Why does a plane fly?
\item Why does a paper plane fly?
\item What makes a good plane?
\item What makes a good paper plane?
\end{itemize}
\end{frame}
\end{document}
|