-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.tex
64 lines (44 loc) · 1.38 KB
/
main.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
\documentclass{beamer}
% Handles images
\usepackage{graphicx}
\graphicspath{{images/}}
% Works with any of the following themes
% Uncomment your preferred theme
%\usetheme{CambridgeUS}
\usetheme{Madrid}
\usecolortheme{uoa}
\title{University of Aberdeen Beamer Template}
\subtitle{Lecture 2: Applied Phlebotinum}
\author[Prof J. Smith]{Professor John Smith}
\institute[UoA]{University of Aberdeen}
\date{May 2016}
\subject{Computing Science}
\titlegraphic{
\includegraphics[height=1.2cm,keepaspectratio]{UoA-logo}
}
\begin{document}
\begin{frame}
\vspace{1.5cm} % Uncomment if it breaks the theme
\titlepage
\end{frame}
\begin{frame}{Introduction}{UoA Beamer Template Features}
\begin{itemize}
\item Professional and stylish
\item Follows university branding guidelines
\item Tested with multiple types of colourblindness
\item Tested with multiple Beamer themes
\end{itemize}
\end{frame}
\begin{frame}{Examples}
You're probably wondering how \textit{italic text}, \emph{emphasized text}, \textbf{bold text}, \texttt{verbatim text} and \alert{highlighted text} appear in this colour theme. Well now you know.
\begin{block}{Text Block}
A block of text goes here.
\end{block}
\begin{alertblock}{Highlight Block}
Important points go here.
\end{alertblock}
\begin{examples}
Put examples here. "Examples" is fixed as block title.
\end{examples}
\end{frame}
\end{document}