-
Notifications
You must be signed in to change notification settings - Fork 2
/
main.tex
113 lines (89 loc) · 2.59 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
%!TEX program = xelatex
\documentclass[12pt, a4paper]{report}
\usepackage[legalpaper, a4paper, margin=2cm]{geometry}
\usepackage[english]{babel}
\usepackage{hyperref}
\usepackage{libs/utbmcovers}
\usepackage{lipsum}
\usepackage{sectsty}
\usepackage{csquotes}
\usepackage[
backend=biber,
style=authortitle,
citestyle=verbose-ibid,
abbreviate=false,
language=french,
datamodel=ISO690UTBM
]{biblatex} % ISO 690 Utbm
\input{biblatex.cfg}
%----------------------------------------
% Use Arial as base font
%----------------------------------------
\setmainfont{Arial.ttf}[
Path=./assets/fonts/,
Extension=.ttf,
BoldFont = *Bold,
ItalicFont = *Italic,
BoldItalicFont = *BoldItalic,
]
\chapterfont{\arialfont\fontseries{b}\fontsize{28pt}{36pt}}
\sectionfont{\arialfont\fontseries{b}\fontsize{24pt}{28pt}}
\subsectionfont{\arialfont\fontseries{b}\fontsize{20pt}{22pt}}
\subsubsectionfont{\arialfont\fontseries{b}\fontsize{20pt}{22pt}}
%----------------------------------------
% UTBM covers configuration
%----------------------------------------
% \setutbmfrontillustration{}
% \setutbmtitle{}
% \setutbmsubtitle{}
% \setutbmstudent{}
% \setutbmstudentdepartment{}
% \setutbmstudentpathway{}
% \setutbmcompany{}
% \setutbmcompanyaddress{}
% \setutbmcompanywebsite{}
% \setutbmcompanytutor{}
% \setutbmschooltutor{}
% \setutbmabstract{}
%----------------------------------------
% Document configuration
% Notes:
% - '\graphicspath' refers to the path where images are stored.
% - '\addbibresource' refers to the bibliography file(s), separated by commas.
%----------------------------------------
\graphicspath{{./assets/images/}}
\addbibresource{bibliography.bib}
%----------------------------------------
% Document
% Notes:
% - Usually, the abstract is not referenced in the table of contents
% nor the greetings section, so we use the '*' option to avoid it.
% - Non-cited references are not shown in the bibliography, so we use the
% '\nocite{*}' command to show them.
% - Everything below '\subsubsection' is not shown in the table of contents,
%----------------------------------------
\begin{document}
\arialfont
\makeutbmfrontcover{}
\section*{Abstract}
\lipsum[1-3]
\newpage
\section*{Greetings}
\lipsum[1-2]
\tableofcontents
\newpage
\chapter{Lorem Ipsum}
\section{Section of Lorem Ipsum}
\lipsum[1-1]\footnote{Footnote of Lorem Ipsum}
\subsection{Sub Section of Lorem Ipsum}
\lipsum[1-1]
\subsubsection{Sub Sub Section of Lorem Ipsum}
\paragraph{title of paragraph}
\lipsum[1-1]
\paragraph{}
\lipsum[1-1]
\newpage
\nocite{*}
\printbibliography{}
\makeutbmbackcover{}
\end{document}