-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtemplate.tex
62 lines (47 loc) · 1.7 KB
/
template.tex
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
\documentclass{beamer}
\beamertemplatenavigationsymbolsempty
\usepackage{hyperref}
\usepackage{enumitem}
\usepackage[utf8]{inputenc}
\usepackage{bookman}
\usepackage{xcolor}
% Base theme and colour theme
\usetheme{Boadilla}
% Specify whether white or grey shoud be the text colour
% (switch between light theme and dark theme)
\newcommand{\textcolour}{mygrey}
\newcommand{\backdropcolour}{mywhite}
% Define my own colours
\definecolor{myblue}{RGB}{20, 133, 255}
\definecolor{mygrey}{RGB}{42, 50, 51}
\definecolor{myred}{RGB}{239, 71, 111}
\definecolor{mygreen}{RGB}{0, 255, 110}
\definecolor{mywhite}{RGB}{249, 255, 234}
% Set my colours to be used by beamer
\setbeamercolor{normal text}{fg=\textcolour,bg=\backdropcolour}
\setbeamercolor{palette primary}{fg=mygrey,bg=mygreen}
\setbeamercolor{palette secondary}{fg=mygrey,bg=myred}
\setbeamercolor{palette tertiary}{fg=myblue,bg=myblue}
\setbeamercolor{titlelike}{fg=myred,bg=\backdropcolour}
% Title
\newcommand{\thetitle}{Sample Text}
% Large word at center
\newcommand{\thebigword}[1]{\begin{center}{\huge \textbf{\textcolor{myblue}{#1}}}\end{center}}
\title{\thetitle}
\begin{document}
%-------------------------------------------------------------------------------
%--TITLE FRAME------------------------------------------------------------------
%-------------------------------------------------------------------------------
\begin{frame}
\begin{center}
{\huge \textcolor{myred}{\textbf{\thetitle}} } \\
\bigskip
\textcolor{\textcolour}{\emph{David Thompson}}
\end{center}
\end{frame}
%-------------------------------------------------------------------------------
\begin{frame}
\frametitle{Slide Title}
Slide Content
\end{frame}
\end{document}