-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.tex
106 lines (89 loc) · 2.34 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
\documentclass[notitlepage]{article}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{amsmath}
\usepackage{amsthm}
\usepackage{graphicx}
\usepackage{tikz}
\usetikzlibrary{arrows,automata}
\usepackage{algorithm2e}
\usepackage{algorithmic}
\usepackage{appendix}
\usepackage{hyperref}
\usepackage{datetime}
\usepackage{fancyhdr}
\usepackage{semantic}
\usepackage[noload]{qtree}
\usepackage{comment}
\usepackage{pdflscape}
\usepackage{graphicx}
\usepackage[margin=1in]{geometry}
\usepackage{moreverb}
\usepackage{caption}
\usepackage{url}
\usepackage{layout}
\usepackage[loose]{subfigure}
\usepackage{lineno}
\usepackage{bm}
\usepackage{tabularx}
\usepackage{hhline}
\usepackage{listings}
\usepackage{color}
\definecolor{lightgray}{rgb}{.9,.9,.9}
\definecolor{darkgray}{rgb}{.4,.4,.4}
\definecolor{purple}{rgb}{0.65, 0.12, 0.82}
\definecolor{R}{RGB}{220,20,60}
\lstdefinelanguage{JavaScript}{
keywords={typeof, new, true, false, catch, function, return, null, catch, switch, var, if, in, while, do, else, case, break},
keywordstyle=\color{blue}\bfseries,
ndkeywords={class, export, boolean, throw, implements, import, this},
ndkeywordstyle=\color{darkgray}\bfseries,
identifierstyle=\color{black},
sensitive=false,
comment=[l]{//},
morecomment=[s]{/*}{*/},
commentstyle=\color{purple}\ttfamily,
stringstyle=\color{red}\ttfamily,
morestring=[b]',
morestring=[b]"
}
\lstset{
language=JavaScript,
backgroundcolor=\color{lightgray},
extendedchars=true,
basicstyle=\footnotesize\ttfamily,
showstringspaces=false,
showspaces=false,
numbers=left,
numberstyle=\footnotesize,
numbersep=9pt,
tabsize=2,
breaklines=true,
showtabs=false,
captionpos=b
}
\newcommand{\red}[1]{{\textcolor{R}{#1}}}
\newcommand{\arr}{\mathbb{R}}
\newcommand{\st}{\;\; st \;\;}
\newcommand{\nat}{\mathbb{N}}
\newcommand{\pr}{\mathbb{P}}
%Uncomment this if you're a BOSS
%\usepackage[annatar]{tengwarscript}
%\newcommand{\tengm}{\mbox{\Tmalta}}
\newtheorem{proposition}{Proposition}
\title{Systems Security Report - Part B}
\author{Tim Jones \& Drum Ogilvie}
\begin{document}
\maketitle
\section{Introduction}
\input{./intro.tex}
% \section{Solution}
\input{./solution.tex}
\section{Reflection}
\input{./reflection.tex}
\section{Conclusion}
\input{./conclusion.tex}
\clearpage
\bibliography{bibliography}{}
\bibliographystyle{plain}
\end{document}