-
Notifications
You must be signed in to change notification settings - Fork 0
/
template.tex
171 lines (136 loc) · 3.93 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
\documentclass{beamer}
%The following page lists the elements of beamer presentations.
%http://www.cpt.univ-mrs.fr/~masson/latex/Beamer-appearance-cheat-sheet.pdf
%The following link has a guide on the beamer library.
%http://mirror.utexas.edu/ctan/macros/latex/contrib/beamer/doc/beameruserguide.pdfb
%There are a number of themes from which to select. Please see the following
%page for more options.
%https://mpetroff.net/files/beamer-theme-matrix/
\usetheme{Berlin}
%Define the colors for use in styling the page elements.
\definecolor{color-primary}{HTML}{116791}
\definecolor{color-secondary}{HTML}{6694AB}
\definecolor{color-accent}{HTML}{DE6E7A}
%Adjust the color of various page elements for the Berlin theme.
%Presentation title
\setbeamercolor*{palette primary}{fg=white,bg=color-primary}
%Inner border
\setbeamercolor*{palette secondary}{fg=white,bg=color-secondary}
%Outer border
\setbeamercolor*{palette tertiary}{fg=white,bg=color-primary}
%Navigation symbols
\setbeamercolor*{navigation symbols}{fg=color-accent,bg=color-accent}
%Table of contents items
\setbeamercolor*{section in toc}{fg=color-primary}
%Slide titles and subtitles
\setbeamercolor*{frametitle}{bg=white,fg=black}
\setbeamercolor*{framesubtitle}{bg=white,fg=color-primary}
%Color the bullet points
\setbeamercolor*{item}{bg=white,fg=color-secondary}
%Block items
\setbeamercolor*{block title}{bg=color-primary,fg=white}
%Bibliography items
\setbeamercolor*{bibliography entry title}{fg=black}
\setbeamercolor*{bibliography entry author}{fg=black}
\setbeamercolor*{bibliography entry location}{fg=black}
\setbeamercolor*{bibliography entry note}{fg=black}
%Remove the bibliography icon next to the entries in the references section, and replace the icons with a label number using \insertbiblabel.
\setbeamertemplate{bibliography item}{\insertbiblabel}
%Make the bibliography item number black.
\setbeamercolor*{bibliography item}{fg=black}
%The following is information that will be displayed on the title page.
\title{Presentation Title}
\author{Author Name}
\institute{Organization Name}
\date{May 5, 2018}
%Insert the page number in the lower right hand corner.
\expandafter\def\expandafter\insertshorttitle\expandafter{\insertshorttitle \hfill\insertframenumber}
\begin{document}
% Slide 1 (Title page)
\begin{frame}
\titlepage
\end{frame}
% Slide 2 (Table of contents)
\begin{frame}
\frametitle{Overview}
\tableofcontents
\end{frame}
%Slide 3
\begin{frame}
\frametitle{Slide Title}
\begin{itemize}
\item Itemized point one
\item Itemized point two
\item IInclude a BibTeX citation here \cite{citation_name}
\end{itemize}
\end{frame}
%Start the first section of the presentation.
\section{Section 1}
%Slide 4
\begin{frame}
\frametitle{Slide Title}
\begin{itemize}
\item Itemized point one
\item Itemized point two
\item Itemized point three
\end{itemize}
%Add some space between the bullet points and the blocks.
\vspace{20pt}
\begin{columns}[T]
\begin{column}{.45\textwidth}
\begin{block}{Block 1}
Content
\end{block}
\end{column}
\hfill%
\begin{column}{.45\textwidth}
\begin{block}{Block 2}
Content
\end{block}
\end{column}
\end{columns}
\end{frame}
%Start the next section of the presentation.
\section{Section 2}
\begin{frame}
\frametitle{Slide Title}
\begin{columns}[T]
\begin{column}{.6\textwidth}
\begin{itemize}
\item Itemized point one
\item Itemized point two
\item Itemized point three
\end{itemize}
\end{column}
\begin{column}{.4\textwidth}
\begin{block}{Block 1}
Content
\end{block}
\begin{block}{Block 2}
Content
\end{block}
\begin{block}{Block 3}
Content
\end{block}
\end{column}
\end{columns}
\end{frame}
\section{References}
\begin{frame}[allowframebreaks]
\frametitle{References}
\bibliographystyle{plain}
%Enter the name of the .bib file here
\bibliography{template_bibliography}
\end{frame}
\begin{frame}
\begin{center}
\end{center}
\begin{center}
{\Huge Thank You} \\
\vspace{20pt}
\textbf{Questions?}\\
\vspace{10pt}
\textbf{Email address}
\end{center}
\end{frame}
\end{document}