-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.tex
60 lines (56 loc) · 1.49 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
\documentclass[11pt]{article}
\renewcommand{\baselinestretch}{1.15}
% some commonly used packages are included here
\usepackage[utf8]{inputenc}
\usepackage{graphicx}
\usepackage{float}
\usepackage{multirow}
\usepackage[table,xcdraw]{xcolor}
\usepackage{listings}
\usepackage[a4paper, total={6.3in, 9.4in}]{geometry}
\usepackage{color}
\usepackage{booktabs}
\usepackage{tabularx}
\usepackage{amssymb}
\usepackage{vhistory}
% some configurations for the listings package
\definecolor{codegreen}{rgb}{0,0.6,0}
\definecolor{codegray}{rgb}{0.5,0.5,0.5}
\definecolor{codepurple}{rgb}{0.58,0,0.82}
\definecolor{backcolour}{rgb}{0.95,0.95,0.92}
\lstdefinestyle{mystyle}{
backgroundcolor=\color{backcolour},
commentstyle=\color{codegreen},
keywordstyle=\color{magenta},
numberstyle=\tiny\color{codegray},
stringstyle=\color{codepurple},
basicstyle=\footnotesize\ttfamily,
breakatwhitespace=false,
breaklines=true,
captionpos=b,
keepspaces=true,
numbers=left,
numbersep=5pt,
showspaces=false,
showstringspaces=false,
showtabs=false,
}
\lstset{style=mystyle}
% beginning of the report
\begin{document}
\input{cover.tex}
\input{changelog.tex}
\newpage
\pagenumbering{gobble}
\tableofcontents
\newpage
\pagenumbering{arabic}
% add your contents here
\input{sections/overview.tex}
\input{sections/access.tex}
\input{sections/data.tex}
\input{sections/compilation.tex}
\input{sections/jobs.tex}
\input{sections/monitoring.tex}
\input{sections/appendix.tex}
\end{document}