-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathmain.tex
More file actions
105 lines (87 loc) · 2.09 KB
/
Copy pathmain.tex
File metadata and controls
105 lines (87 loc) · 2.09 KB
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
\documentclass[a4paper, 10pt, oneside]{article}
% Essentials
\usepackage[utf8]{inputenc}
\usepackage[english]{babel}
\usepackage[hidelinks]{hyperref}
\usepackage[tmargin=3cm, bmargin=2cm, lmargin=2cm, rmargin=2cm]{geometry}
\usepackage[backend=bibtex,style=alphabetic,sorting=ynt]{biblatex}
\usepackage{algorithmic}
% Bibliography
\bibliography{main}
% Optional but useful
\usepackage{amsmath,amsthm,amsfonts,amssymb}
\usepackage{graphicx}
\usepackage{multicol}
\usepackage{float}
\usepackage{subfiles}
\usepackage{enumitem}
\usepackage{tabularx,booktabs,multirow}
\usepackage{longtable}
\usepackage{url}
\usepackage{enumitem}
\usepackage{lipsum}
\usepackage{mdframed}
\usepackage{csquotes}
\usepackage[table]{xcolor}
\usepackage{fancyhdr}
\usepackage{titling}
\usepackage{listings}
\usepackage{tikz}
\usepackage{mathtools}
%Tikz commands
\tikzstyle{vertex} = [fill,shape=circle,node distance=80pt]
\tikzstyle{edge} = [fill,opacity=.5,fill opacity=.5,line cap=round, line join=round, line width=50pt]
\tikzstyle{elabel} = [fill,shape=circle,node distance=30pt]
\pgfdeclarelayer{background}
\pgfsetlayers{background,main}
% Fancy Header
\pagestyle{fancy}
\fancyhead[L]{\leftmark}
\fancyhead[R]{\thepage}
\fancyfoot{}
% Indentation
\setlength\parindent{0pt}
% Title
\title{Parallel Computing}
\date{\today}
\author{\textbf{Dieter Castel \& Jonas Devlieghere}}
\setlist[description]{style=nextline}
\setlength\parindent{0pt}
\graphicspath{{figures/}{../figures/}}
%CUSTOM COMMANDS
\newcommand{\codeSrc}{code}
% Listings
\lstset{
language=c,
frame=lines,
numbers=none,
tabsize=4,
breakatwhitespace=false,
captionpos=b
}
% Theorems
\theoremstyle{definition}
\newtheorem*{question}{Question}
\newtheorem*{solution}{Solution}
\begin{document}
% Title page
\maketitle
\newpage
% Table of Contents
\tableofcontents
\newpage
% Main Matter
\section{Exam 2015-01-16}
\subfile{subfiles/20150116.tex}
\section{Exam 2014-01-17}
\subfile{subfiles/20140117.tex}
\newpage
\section{Exam 2014-01-24}
\subfile{subfiles/20140124.tex}
% Appendix
\newpage
\appendix
\section{Bibliography}
\nocite{*}
\printbibliography
\end{document}