-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.tex
167 lines (131 loc) · 4.99 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
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
% !TeX spellcheck = en_US
% !TeX encoding = utf8
% !TeX program = pdflatex
% !TeX root = main.tex
% -*- coding:utf-8 mod:LaTeX -*-
% For pkg being imported elsewhere, specify the options before loading the package
\PassOptionsToPackage{
colorlinks = true,
linkcolor = blue, % Also in the side panel sections
linkbordercolor = red,
urlcolor = {blue!90!black},
citecolor = black,
anchorcolor = blue
% pdfborderstyle={/S/U/W 1}% border style will be underline of width 1pt
}{hyperref}
\documentclass[10pt]{beamer} % With pauses
%\documentclass[handout,10pt]{beamer} % No pauses
%\makeatletter
%\def\Hy@colorlink#1{\begingroup\fontshape{bf}\selectfont}%
%\makeatother
% \makeatletter
%\Hy@AtBeginDocument{%
% \def\@pdfborder{0 0 1}% Overrides border definition set with colorlinks=true
% \def\@pdfborderstyle{/S/U/W 1}% Overrides border style set with colorlinks=true
% % Hyperlink border style will be underline of width 1pt
%}
%\makeatother
%\usepackage[T1]{fontenc} % Messes with the font ...
\usepackage[utf8]{inputenc}
\usepackage[english]{babel}
\usepackage{cleveref}
% For loading images
%\usepackage{graphicx} % Not needed with beamer
\usepackage{grffile}
\usepackage[official]{eurosym} % for the euro symbol \euro{}
\usepackage{etoolbox}% http://ctan.org/pkg/etoolbox
\usepackage{tabularx} % http://ctan.org/pkg/tabularx
\usepackage{listings} % Code listings
%\usepackage{xcolor} % Not needed with beamer
\usepackage{default}
\usepackage{array} % for defining a new column type
\usepackage{varwidth} %for the varwidth minipage environment
\usepackage{xifthen} % Logic
\usepackage{multido}% Logic
\usepackage{multimedia} % For movies
\usepackage{import}
\usepackage{tcolorbox} % Colored boxes
\usepackage{totcount} % Keeps track of the counter TOTALs
\usepackage{caption} % To use \caption*
\usepackage{csvsimple}
\usepackage{amsmath} % For normal text in math mode $...\text{normal text}...$
% colors
\subimport{}{preamble_src/custom_colors.tex}
\newcommand\myshade{85}
\definecolor{mylinkcolor}{rgb}{0.52, 0.09, 0.71}
\definecolor{mycitecolor}{rgb}{0.89, 0.65, 0.13}
\definecolor{myurlcolor}{rgb}{0.08, 0.55, 0.65}
\hypersetup{
linkcolor = mylinkcolor!\myshade!black,
citecolor = mycitecolor!\myshade!black,
urlcolor = myurlcolor!\myshade!black,
colorlinks = true,
}
% For JSON code snippetscm/100cm * 2
\colorlet{punct}{red!60!black}
\definecolor{background}{HTML}{EEEEEE}
\definecolor{delim}{RGB}{20,105,176}
\colorlet{numb}{magenta!60!black}
\lstdefinelanguage{json}{
basicstyle=\normalfont\ttfamily,
numbers=left,
numberstyle=\scriptsize,
stepnumber=1,
numbersep=8pt,
showstringspaces=false,
breaklines=true,
frame=lines,
backgroundcolor=\color{background},
literate=
*{0}{{{\color{numb}0}}}{1}
{1}{{{\color{numb}1}}}{1}
{2}{{{\color{numb}2}}}{1}
{3}{{{\color{numb}3}}}{1}
{4}{{{\color{numb}4}}}{1}
{5}{{{\color{numb}5}}}{1}
{6}{{{\color{numb}6}}}{1}
{7}{{{\color{numb}7}}}{1}
{8}{{{\color{numb}8}}}{1}
{9}{{{\color{numb}9}}}{1}
{:}{{{\color{punct}{:}}}}{1}
{,}{{{\color{punct}{,}}}}{1}
{\{}{{{\color{delim}{\{}}}}{1}
{\}}{{{\color{delim}{\}}}}}{1}
{[}{{{\color{delim}{[}}}}{1}
{]}{{{\color{delim}{]}}}}{1},
}
\graphicspath{{images/}}
% Fill out the different parts of the header
\subimport{}{preamble_src/custom_constructs.tex} % Normal input/include does not work for this
\subimport{}{preamble_src/styles/goettingen_style.tex}
%\subimport{}{preamble_src/styles/metropolis_style.tex}
\usepackage{xpunctuate} % For the latin accronyms
\providecommand{\eg}[0]{e.g\xperiod}
\providecommand{\ie}[0]{i.e\xperiod}
% YOUR INFO
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\title[]{Nevada status}
\author[]{spanflug}
\institute[*]{\email{[email protected]}}
\date{\today}
%\date{} % no date
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\begin{document}
% Title frame without side panel and CENTERED (+/- depending on right/left side panel position)
\begin{nosidebarframe}
\titlepage
\end{nosidebarframe}
\listOfTodosFrame % Only appears if there actually are TODOs (\todo{})
% Table of contents
\frame{\frametitle{Table of contents}{\hypersetup{linkcolor=black}\tableofcontents}}
% YOUR SECTIONS
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\input{sections/example_section.tex}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Conclusion
\section{Status report}
\completedTable %Only appears if there are compoleted \begin{tasks}{100} content...\end{tasks}
\inDevTable %Only appears if there are compoleted \begin{tasks}{5} content...\end{tasks}
\section{Outlook}
\input{sections/proposals.tex}
\end{document}