diff options
| author | ericmarin <maarin.eric@gmail.com> | 2026-03-09 15:15:41 +0100 |
|---|---|---|
| committer | ericmarin <maarin.eric@gmail.com> | 2026-04-28 17:58:05 +0200 |
| commit | 7784e295a14a957e3e04cf2de7b6f4be0247992b (patch) | |
| tree | 8dfc65da1bf33433f57f86314bf599e07d178f0c /main.tex | |
| download | vein-7784e295a14a957e3e04cf2de7b6f4be0247992b.tar.gz vein-7784e295a14a957e3e04cf2de7b6f4be0247992b.zip | |
thesis structure
Diffstat (limited to '')
| -rw-r--r-- | main.tex | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/main.tex b/main.tex new file mode 100644 index 0000000..dbc7999 --- /dev/null +++ b/main.tex @@ -0,0 +1,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} |
