forked from HEIG-VD/template-tb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreport.tex
108 lines (80 loc) · 2.18 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
\documentclass[
iict, % Saisir le nom de l'institut rattaché
iscl, % Saisir le nom de l'orientation
% confidential, % Décommentez si le travail est confidentiel
]{heig-tb}
\usepackage[nooldvoltagedirection,european,americaninductors]{circuitikz}
\signature{signature.svg} % Remplacer par votre propre signature vectorielle.
\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
%% Résumé / Résumé publiable / Version abrégée
\begin{abstract}
\input{abstract}
\end{abstract}
\begin{requirements}
\input{requirements}
\end{requirements}
%% 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{introduction.tex}
\chapter{État de l'art}
\input{state-of-the-art.tex}
\chapter{Technologies et outils de développement}
\input{technologies.tex}
\chapter{Méthodologie de travail}
\input{methodology.tex}
\chapter{Développement du systeme DDnet}
\input{ddnet.tex}
\chapter{Développement de l'application Describble}
\input{describble.tex}
\chapter{Perspectives}
\input{perspectives.tex}
\chapter{Conclusion}
\input{conclusion.tex}
\clearpage
\nocite{*}
\normalem
\printbibliography
% \appendix
% \appendixpage
% \addappheadtotoc
\let\cleardoublepage\clearpage
\backmatter
\label{glossaire}
\printnoidxglossary
\label{index}
\printindex
% Le colophon est le dernier élément d'un document qui contient des notes de l'auteur concernant la mise en page et l'édition du document : il est parfaitement optionnel.
%\input{colophon.tex}
\end{document}