-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.tex
More file actions
67 lines (55 loc) · 1.43 KB
/
main.tex
File metadata and controls
67 lines (55 loc) · 1.43 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
\documentclass[a4paper, 11pt]{article}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[french]{babel}
\usepackage{hyperref}
\usepackage{wrapfig}
\usepackage{fancyhdr}
\usepackage{graphicx}
\usepackage{titling}
\usepackage{sectsty} %% taille des textes
\usepackage{tocloft}%% taille table des matières
\usepackage{tabto}
\usepackage{etoolbox}
\usepackage{subcaption}
\pagestyle{fancy}
\fancyhf{}
%% Tête et pied de page
\lhead{SAFExTY}
\rfoot{Page \thepage}
\lfoot{Janvier 2020}
%% Configuration des sections
\sectionfont{\LARGE}
\subsectionfont{\Large}
\renewcommand\cftsecfont{\Large\bf}
\renewcommand\cftsubsecfont{\large}
\renewcommand\cftsecafterpnum{\par\addvspace{10pt}}
%% Pré-titre
\pretitle{
\begin{center}
\includegraphics[width=7cm]{images/SAFExTY-Text.png}\\
}
%% Titre
\title{\Huge Cahier des charges}
\date{Janvier 2020}
\posttitle{\end{center}}
\begin{document}
%% Page de titre
\maketitle
\pagebreak
%% Page table des matières
\begingroup
\flushbottom
\setlength{\parskip}{0pt plus 1fil}%
\renewcommand{\contentsname}{\huge\textsc{Table des matières\newline}}
\tableofcontents
\newpage
\endgroup
%% Les autres pages
\include{sections/1-introduction/introduction}
\include{sections/2-presentation/presentation}
\include{sections/3-project/project}
\include{sections/4-organisation/organisation}
\include{sections/5-environment/environment}
\include{sections/6-conclusion/conclusion}
\end{document}