-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.tex
66 lines (47 loc) · 1.42 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
\documentclass[a4paper,10pt,twocolumn]{article}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% PACKAGES %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\usepackage{graphicx}
\usepackage[
a4paper,
bindingoffset=0.2in,%
left=2cm,right=2cm,top=2cm,bottom=3cm,%
footskip=.25in]
{geometry}
\usepackage[obeyspaces]{url}
\usepackage{tabularx}
\usepackage{booktabs}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% BIB SETUP %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\usepackage[
backend=biber,
style=ieee,
natbib=true,
url=true,
doi=true,
eprint=false
]{biblatex}
\addbibresource{bibliography.bib}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% CONFIGS %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%\renewcommand{\tabularxcolumn}[1]{>{\small}m{#1}} ==> Vertikale Zentrierung der Zelle
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% VARS %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\def\imagedir{./src}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% DOC %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\begin{document}
%%% TITLE %%%
\author{Martin Pretz, 7060026}
\title{\huge Why path traversal attacks are so devasating but relatively easy to avoid in theory
\linebreak \linebreak
\small using the example CVE-2019-11510}
\maketitle
%%% CONTENT %%%
\input{abstract.tex}
\input{introduction.tex}
\input{sections.tex}
\input{conclusion.tex}
%%% BIBLIOGRAPHY %%%
\clearpage
\small
\onecolumn
\printbibliography
\end{document}