-
Notifications
You must be signed in to change notification settings - Fork 0
/
report.tex
68 lines (45 loc) · 1.75 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
%%% Owner : GitWatin
%%% Contact : github@valdenis.be
%%% Licence : CC BY-NC-ND 4.0
\documentclass[a4paper, 12pt]{article}
% Import Packages
\include{bin/packages}
% Import function page
\include{bin/function}
% Change this parameter to display or not content
\setboolean{copyright}{true} % Remove copyright page
\setboolean{footer}{true} %remove the banner and CTI,... logo
\setboolean{bibliography}{true} %Use or not the bibliography section
\setboolean{ListOfCode}{true} % Display or not List of Algorithm/Code
\setboolean{ListOfTables}{true} % Display or not List of tables
% FlyLeaf Parameter
\title{\LaTeX template}
\newcommand{\soustitre}{Sous Titre}
\newcommand{\cours}{Cours}
\newcommand{\cursus}{Cursus} % Master en sciences de l'ingénieur industriel
\newcommand{\teacher}{Prénom \textsc{NOM}}
\newcommand{\auteur}{\href{www.valdenis.be}{Valentin \textsc{DENIS}}} %To add another name add "\\" between the name
\newcommand{\academicyear}{2020 -- 2021}
% Copyright Table parameter
\newcommand{\version}{1.0}
\newcommand{\confidentialite}{Public} % Public/Internal/Restricted/Confidential
\newcommand{\ReleaseDate}{N/A}
\newcommand{\partner}{<Your Partner>} %\href{www.heh.be}{Haute Ecole en Hainaut}
\newcommand{\contact}{\href{mailto:hello@valdenis.be}{hello@valdenis.be}\\ }
\newcommand{\keywords}{Keyword1; keyword2}
%==========================================================================================
\begin{document}
%Add config template files
\input{bin/document}
% Begin environnement for lateral banner
\begin{env_side}
%% Add at this place your chapter .tex files
\input{src/abstract}
\input{src/introduction}
%% Add bibliography if didn't want set line 15 at False
\ifbibliography
\input{bib}
\else
\fi
\end{env_side}
\end{document}