-
Notifications
You must be signed in to change notification settings - Fork 0
/
presentation.tex
101 lines (74 loc) · 2.88 KB
/
presentation.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
% !TEX TS-program = lualatex
% !TEX encoding = utf-8
% !TEX spellcheck = en-US
% !BIB TS-program = biber
% ┌───────────────────────────────────────────────────────────────┐
% │ Contents of presentation.tex │
% ├───────────────────────────────────────────────────────────────┘
% │
% ├──┐PREAMBLE
% │ ├── CLASS OPTIONS
% │ ├── LAYOUT OPTIONS
% │ └── VARIABLES
% ├──┐BODY
% │ ├── TITLE
% │ ├── OUTLINE
% │ ├── CONTENT
% │ ├── REFERENCES
% │ └── CLOSING
% │
% └───────────────────────────────────────────────────────────────
% ################################################################ PREAMBLE
% standard suitable for digital preservation
% can increase compilation time by 3.5x, uncomment only for final version
%\DocumentMetadata{
% pdfversion=2.0,
% testphase=phase-II,
% pdfstandard=A-4
%}
% ################################ CLASS OPTIONS
\documentclass[
11pt,
% uncomment to print white pages with only slide notes, remove semi-transparency slides from {show only notes} option
%handout,
% comment out for 4:3
aspectratio=169,
% option to maintain a consistent text width in case of multiple columns
onlytextwidth,
% align slides content to top by default
t
]{beamer}
% ################################ LAYOUT OPTIONS
% uncomment to print white pages with only slide notes
%\setbeameroption{show only notes}
% use custom theme and load required packages
% other nice themes: Berlin Boadilla CambridgeUS Ilmenau Madrid Szeged
\usetheme{masterthesis}
% uncomment to make the presentation full-screen when the file is opened
%\hypersetup{pdfpagemode=FullScreen}
% ################################ VARIABLES
% load variables from external file
% must be loaded after using the beamer theme (new packages are loaded)
\input{variables}
% set variables
\title{\thesisTitle}
\author{\authorName}
% add references
%\addbibresource{references.bib}
% select font
%\setsansfont{Raleway}
% ################################################################ BODY
\begin{document}
% only include specific frames to speedup compilation time
%\includeonlyframes{example1,example3}
% ################################ TITLE
\addTitleSlide
% ################################ OUTLINE
\addOutlineSlide
% ################################ CONTENT
\input{chapters/slides}
% ################################ REFERENCES
%\addReferencesSlide
% ################################ CLOSING
\addThankYouSlide
\end{document}