-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththesis.tex
97 lines (79 loc) · 1.94 KB
/
thesis.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
\documentclass[11pt,twocolumn]{sigplanconf}
\setlength{\paperheight}{11in}
\setlength{\paperwidth}{8.5in}
\usepackage[
pass,
]{geometry}
\usepackage{times}
%graphics packages
%\usepackage[tight]{subfigure}
\usepackage{graphicx}
\usepackage{epstopdf}
\usepackage{epsfig}
\usepackage{adjustbox}
\usepackage{pbox}
\usepackage{rotating}
% table packages
\usepackage{multirow}
\usepackage{booktabs}
\usepackage{tabularx}
\usepackage{changepage}
\usepackage{color}
\usepackage{xspace}
\usepackage{listings}
\usepackage[labelfont=bf,font=small,skip=5pt]{caption}
\usepackage{subcaption}
\usepackage[usenames,dvipsnames]{xcolor}
\usepackage{amsfonts}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage[hyphens,obeyspaces,spaces]{url}
\usepackage[breaklinks, colorlinks]{hyperref}
\hypersetup{citecolor=blue,linkcolor=blue}
\definecolor{dkgreen}{rgb}{0,0.6,0}
\definecolor{gray}{rgb}{0.5,0.5,0.5}
\definecolor{mauve}{rgb}{0.58,0,0.82}
\lstset{frame=tb,
language=C,
aboveskip=3mm,
belowskip=3mm,
showstringspaces=false,
columns=flexible,
basicstyle={\small\ttfamily},
numbers=none,
numberstyle=\tiny\color{gray},
keywordstyle=\color{blue},
commentstyle=\color{dkgreen},
stringstyle=\color{mauve},
breaklines=true,
breakatwhitespace=true,
tabsize=3,
escapeinside={(*@}{@*)}
}
\newcommand{\eat}[1]{}
\newcommand{\note}[1]{[\textcolor{red}{\textit{#1}}]}
\newcommand{\msg}[1]{{\textsc{\small #1}}}
\newcommand{\method}[1]{{\texttt{\small #1}}}
\newcommand{\stitle}[1]{\vspace{.5pt}{\noindent\bf #1:}}
\newcommand{\heading}[1]{{\vspace{2pt}\noindent\bf{#1}}}
\title{Vulnerability Detection with Deep Learning}
\authorinfo{}
\date{}
\begin{document}
\toappear{}
\maketitle
\begin{sloppypar}
\input{abstract}
\input{introduction}
\input{background}
\input{problem}
\input{previous}
\input{approach}
\input{dataset}
\input{implementation}
\input{related}
\input{conclusion}
\end{sloppypar}
\bibliographystyle{abbrv}
\bibliography{thesis}
\end{document}