-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocument.tex
More file actions
107 lines (84 loc) · 3.56 KB
/
document.tex
File metadata and controls
107 lines (84 loc) · 3.56 KB
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
%-----------------------------------------------
% LaTeX template
% Written By: Thorkel-dev
%-----------------------------------------------
\documentclass[a4paper,11pt,titlepage]{article}
\usepackage{lipsum} % For text generation, to be removed
\usepackage[
imageFooterLeft = {latex.png}, % Optional
imageHeaderLeft = {thorkel-logo.png}, % Optional
subject = {{Subject of the document}}, % Optional
keywords = {{Example, Template, LaTeX}}, % Optional
language = {english}, % Defaut french
% encoding = {}, % Defaut utf8
]{Parameter}
\usepackage[
logoRight = {thorkel.png}, % Optional
logoLeft = {eseo.png}, % Optional
logoCenter = {latex.png}, % Optional
subject = {{Subject of the document}}, % Optional
projectName = {Project Name}, % Optional
enterpriseName = {Entreprise Name}, % Optional
% revision = {}, % Optional
version = {3}, % Optional
]{FrontPage}
\makeglossaries
\loadglsentries{glossary.tex} % We load the dictionary
\loadglsentries{acronyms.tex} % We load the acronyms
\addbibresource{biblio.bib} % Load the bibliography
%-----------------------------------------
% Variables
%-----------------------------------------
\author{Thorkel-dev} % Mandatory
\title{Template \LaTeX} % Mandatory
\date{\normalsize\today} % Mandatory, today's date
% We prepare a background page.
\backgroundsetup{
scale=1,
opacity=0.05,
angle=0,
contents={%
\includegraphics[width=\textwidth]{thorkel-logo.png}
}%
}
%-----------------------------------------
% Document
%-----------------------------------------
\begin{document}
\maketitle
\BgThispage % We use the background for this page only
\vspace*{\fill}
\noindent
DISCLAIMER \newline
This document is an educational document. It was produced by Thorkel-dev.
This document is the property of Thorkel-dev. Outside the educational activities, this document
may not be distributed or copied without the written authorization of its owner.
\vspace*{\fill}
\clearpage
\section*{Table of versions}
\input{tablesVersion.tex} \label{TableOfVersion} % Add the page with the version tables
\clearpage
\tableofcontents % The table of contents
%------------------------------------------------------
% Presentation
%------------------------------------------------------
\input{sections/presentation/presentation.tex}
%------------------------------------------------------
% Example
%------------------------------------------------------
\input{sections/exemple.tex}
\printglossary[type=\acronymtype] \label{acronyms}
\glsaddallunused % Even unused acronyms are displayed
\printglossary[] \label{domaindictionary} % Display the glossary
\glsaddallunused % Even unused words are displayed
\listoffigures \label{TableOfFigure} % The table of figures
\listoflistings \label{TableOfCode} % Source code table
\printbibliography[heading=bibnumbered, label=bibliography] % Display the bibliography
\nocite{*} % Even unused references are displayed
% Add an empty page
\clearpage
\null
\thispagestyle{empty}%
\addtocounter{page}{-1}%
\BgThispage
\end{document}