blob: dbc7999d594c240c913cee1c028330f3ba0462b0 (
plain) (
blame)
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
|
\documentclass[12pt,a4paper,twoside]{report}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[english]{babel}
\usepackage{graphicx}
\usepackage{amsmath, amssymb, amsthm}
\usepackage{cite}
\usepackage[colorlinks=true, linkcolor=black, citecolor=black, urlcolor=black]{hyperref}
\usepackage[nameinlink]{cleveref}
\usepackage{xspace}
\usepackage[colorinlistoftodos]{todonotes}
% \usepackage[scaled=.83]{beramono}
\usepackage{lineno}
\title{VEIN: VErification via Interaction Nets for Neural Networks}
\author{Eric Marin}
\date{\today}
\begin{document}
\maketitle
\begin{abstract}
Summary
\end{abstract}
\tableofcontents
% Introduction: Context -> Problem -> Solution -> Validation -> Outline
\input{chapters/01-introduction}
% Background: Concepts and notions
\input{chapters/02-background}
% Core: The main work
\input{chapters/03-core}
% Related Work: At the end, before conclusions
\input{chapters/04-related-work}
% Conclusion
\input{chapters/05-conclusion}
\bibliographystyle{plain}
\bibliography{references}
\end{document}
|