-
Notifications
You must be signed in to change notification settings - Fork 0
/
report.tex
116 lines (91 loc) · 2.35 KB
/
report.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
107
108
109
110
111
112
113
114
115
116
\documentclass[
reds, % Saisir le nom de l'institut rattaché
ie, % Saisir le nom de l'orientation
%confidential, % Décommentez si le travail est confidentiel
]{heig-tb}
\usepackage[nooldvoltagedirection,european,americaninductors]{circuitikz}
\usepackage{todonotes}
%% Custom packages
\usepackage{multirow}
\nocite{*}
\def\checkmark{\tikz\fill[scale=0.4](0,.35) -- (.25,0) -- (1,.7) -- (.25,.15) -- cycle;}
\renewcommand{\tabularxcolumn}[1]{m{#1}} % Pour aligner verticalement au milieu
\signature{signature/kjordil} %TODO modifier le fichier de la signature (doit être un pdf)
\makenomenclature
\makenoidxglossaries
\makeindex
\addbibresource{bibliography.bib}
\input{nomenclature}
\input{acronyms}
\input{glossary}
\input{meta}
\surroundwithmdframed{minted}
%% Début du document
\begin{document}
\selectlanguage{french}
\maketitle
\frontmatter
\clearemptydoublepage
%% Requis par les dispositions générales des travaux de Bachelor
\preamble
\authentification
\clearemptydoublepage
\chapter{Remerciements}
\input{sections/thank_you}
\clearemptydoublepage
%% Résumé / Version abbrégée
\begin{abstract}
\input{abstract}
\end{abstract}
%% Sommaire et tables
\clearemptydoublepage
{
\tableofcontents
\let\cleardoublepage\clearpage
\listoffigures
\let\cleardoublepage\clearpage
\listoftables
\let\cleardoublepage\clearpage
\listoflistings
}
\printnomenclature
\clearemptydoublepage
\pagenumbering{arabic}
%% Contenu
\mainmatter
\chapter{Introduction}
\input{sections/introduction}
\chapter{Cahier des charges}
\input{sections/specifications}
\chapter{Analyse}
\input{sections/analysis}
\chapter{Implémentation}
\input{sections/implementation}
\chapter{Démonstrateur}
\input{sections/demonstrator}
\chapter{Tests}
\input{sections/tests}
\chapter{Améliorations}
\input{sections/improvements}
\chapter{Conclusion}
\input{sections/conclusion}
\appendix
\appendixpage
\addappheadtotoc
\chapter{Codes sources}
\input{sections/appendices/source_code}
\chapter{Planification et réalité}
\input{sections/appendices/planning}
\chapter{Procès-Verbaux des séances}
\input{sections/appendices/PVs}
\chapter{Licence du code source}
\input{sections/appendices/license}
\let\cleardoublepage\clearpage
\backmatter
% glossaire, biblio et index
\label{glossaire}
\printnoidxglossary
\printbibliography
\label{index}
\printindex
\end{document}