-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.tex
96 lines (76 loc) · 2.01 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
\documentclass[A4]{article}
% -- Packages --
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{fancyhdr}
\usepackage{color}
\usepackage[francais]{babel}
\usepackage{cite}
\usepackage{graphicx}
\graphicspath{{data/}}
\usepackage{listings}
\usepackage{url}
\usepackage{a4}
\usepackage[a4paper, total={5.5in, 9in}]{geometry}
% -- inserer des pdf
\usepackage{pdfpages}
% -- Pour wrapfig = Pour gerer les image + text
\usepackage{wrapfig}
% -- Pour les indentations au 1er paragraph
\usepackage{indentfirst}
% -- Pour quelques truc de math
\usepackage{amsmath}
\usepackage{SIunits}
% -- Pour le planning Gantt
\usepackage{textcomp}
\usepackage[babel=true, kerning=true]{microtype}
\usepackage{pgfgantt}
\usepackage{xcolor}
\ganttset{group/.append style={orange},
milestone/.append style={red},
progress label node anchor/.append style={text=red}}
% -- for clickable table of contents
\usepackage{hyperref}
\hypersetup{
colorlinks,
citecolor=black,
filecolor=black,
linkcolor=black,
urlcolor=black,
hypertexnames=true
}
% -- For long tables
\usepackage{longtable}
% -- For the biblio in the table of content
\usepackage[nottoc]{tocbibind}
% -- for apendix
\usepackage[toc,page]{appendix}
% -- for algorithms (pseudocode)
\usepackage{algorithm2e}
% -- for image rotation
\usepackage{rotating}
% -- for scalable font
\usepackage{lmodern}
% -- for the nomenclature in the TableOfContent
\usepackage[intoc]{nomencl}
\makenomenclature
\renewcommand{\nomname}{List of Symbols}
\pagestyle{fancy}
% -- Document --
\title{Implémentation d'un réseau de neurones sur FPGA}
\author{Paul Luperini\\ Lucas Mahieu\\Hugues de Valon\\ \\ encadré par\\ Frédéric PETROT\\ et\\ Adrien PROST-BOUCLE\\ \\ \\dans le cadre du Projet SLE 3A Ensimag 2016/2017}
\begin{document}
% -- Page de garde :
\maketitle
\vspace{3cm}
\begin{figure}[h!]
\centering
\includegraphics[scale=0.8]{pagegarde}
\label{fig:pagegarde}
\end{figure}
\pagebreak
\tableofcontents
% -- Sections --
\pagebreak
\input{structure.tex}
\end{document}