-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathtemplate.tex
118 lines (108 loc) · 4.49 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
%=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
% Author: Mark H. Olson
% Website: https://mholson.com
% Github: https://github.com/mholson
%
% Updated: 2022-11-05 > Version 3.14159
% - adding support for minted nord color style from pygments
% - deprecating default support for listings package
% - initial Overleaf release
% Updated: 2022-07-08 > Version 3.1415
% - porting for ease of use with overleaf.com
% - changed code printing behavior by adding default support of listings pkg
% while leaving support for custom minted pkg using codeminted documentclass
% option
% Updated: 2022-04-28 > Version 3.141
% - fixed lists by removing enumitem package
% Updated: 2022-04-13 > Version 3.14
% - added optional bibliography
% - added template file
% Updated: 2022-04-13 Version 3.1
% Created: 2015-07-31 Version 3.0
%
%=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
%=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
% PREAMBLE :: sthlmNordLightDemo.tex
%=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
%
% > > > The following beamer class options are available
% aspectratio=169 Change aspect ratio to 16:9
% bibref Include bibliography
% sectionpages Show section pages
% codeminted use minted pkg for code printing instead of listings
% (requires additional setup & Python installed)
% codemintedoverleaf use minted pkg with color style support for Overleaf
% font sizes {8, 9, 10, 11, 12, 14, 17, 20} 11 Default
%
% > > > The following sthlmnord package options are available
% mode = dark (default)
% = light
%=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
\documentclass[aspectratio=169, sectionpages, codemintedoverleaf, bibref]{beamer}
% > > > Bibliography File
\newcommand{\bibfilename}{mhoRef.bib}
% > > > Choose Theme
\usetheme[mode=light]{sthlmnord}
%\usetheme{sthlmnord}
% > > > Generate some Lorem Ipsum placeholder text for the demo.
\usepackage{lipsum}
% > > > Image File Paths
% Here you can add one or more paths to where your images are being
% stored. This will allow you to include only the image file
% name when placing it into your document.
%\graphicspath{{path1},{path2},{path3}}
\graphicspath{{./assets/}}
% > > > Optional use of using subfiles to make content more modular
\usepackage{subfiles}
% > > > Document Information
\title{sthlmNord Beamer Theme [version round (pi, 5)]}
\subtitle{Nord Inspired by Stockholm}
\newcommand{\titleAuthor}{Created by}
\author{mholson.com}
\newcommand{\titleInstitute}{Institute}
\institute{School in Stockholm}
\newcommand{\titleMiscI}{Course}
\newcommand{\descMiscI}{Courses Title Goes Here}
\newcommand{\titleMiscII}{File}
\newcommand{\descMiscII}{\currfilebase}
\date{\today}
\titlegraphic{nordtitlelogolight}
% > > > pdf customizations via hyperref (pkg installed by beamer)
\hypersetup{
%colorlinks=true,
% You might want to disable color links for you final draft
% AND for colors to work properly where links are included.
colorlinks=false,
linkcolor={nordNine},
citecolor={nordNine},
urlcolor={nordNine}
}
%=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
%
% DOCUMENT BEGINS HERE
%
%=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
\begin{document}
%=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
% TITLE START -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
\titlepage
% TITLE END --==-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
%=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
%=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
% TABLE OF CONTENTS START -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
\begin{frame}
\frametitle{Table of contents}
% > > > For longer presentations use \tableofcontents[hideallsubsections] option
% It is also possible to manually control the entries of the table of
% contents by sections.
%\tableofcontents[sections={1-10}]
%\framebreak
%\tableofcontents[sections={11-15}]
\tableofcontents
\end{frame}
% TABLE OF CONTENTS END -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
%=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
\end{document}
%=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
% END OF FILE
%=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=