43 lines
849 B
TeX
43 lines
849 B
TeX
|
\documentclass{report}
|
||
|
|
||
|
% Packages basiques
|
||
|
\usepackage[utf8]{inputenc}
|
||
|
\usepackage[T1]{fontenc}
|
||
|
\usepackage{lmodern}
|
||
|
\usepackage[french]{babel}
|
||
|
\usepackage{hyperref}
|
||
|
|
||
|
% Noms personnalisés
|
||
|
\addto{\captionsfrench}{\renewcommand{\bibname}{Webographie}}
|
||
|
|
||
|
\begin{document}
|
||
|
|
||
|
% Page de garde
|
||
|
\title{Projet L1 -- C.M.I.}
|
||
|
\date{29 février 2016}
|
||
|
\author{Maëlle Beuret, Rémi Cérès, Mattéo Delabre}
|
||
|
\maketitle
|
||
|
|
||
|
% Table des matières
|
||
|
\setcounter{tocdepth}{1}
|
||
|
\tableofcontents
|
||
|
|
||
|
\setlength{\parskip}{0.4cm plus4mm minus3mm}
|
||
|
|
||
|
% Sous-parties
|
||
|
\include{./parts/intro}
|
||
|
\include{./parts/organisation}
|
||
|
\include{./parts/analyse}
|
||
|
\include{./parts/develop}
|
||
|
\include{./parts/manuel}
|
||
|
\include{./parts/conclu}
|
||
|
|
||
|
% Bibliographie
|
||
|
\cleardoublepage
|
||
|
\phantomsection
|
||
|
\addcontentsline{toc}{chapter}{Webographie}
|
||
|
\bibliographystyle{unsrt}
|
||
|
\bibliography{rapport}
|
||
|
|
||
|
\end{document}
|