diff --git a/docs/rapports/rapport-final/figures/.gitkeep b/docs/rapports/rapport-final/figures/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/docs/rapports/rapport-final/parts/analyse.tex b/docs/rapports/rapport-final/parts/analyse.tex new file mode 100644 index 0000000..421e43b --- /dev/null +++ b/docs/rapports/rapport-final/parts/analyse.tex @@ -0,0 +1 @@ +\chapter{Analyse du projet} diff --git a/docs/rapports/rapport-final/parts/conclu.tex b/docs/rapports/rapport-final/parts/conclu.tex new file mode 100644 index 0000000..6422396 --- /dev/null +++ b/docs/rapports/rapport-final/parts/conclu.tex @@ -0,0 +1 @@ +\chapter{Conclusion} diff --git a/docs/rapports/rapport-final/parts/develop.tex b/docs/rapports/rapport-final/parts/develop.tex new file mode 100644 index 0000000..45b1328 --- /dev/null +++ b/docs/rapports/rapport-final/parts/develop.tex @@ -0,0 +1 @@ +\chapter{Développement} diff --git a/docs/rapports/rapport-final/parts/intro.tex b/docs/rapports/rapport-final/parts/intro.tex new file mode 100644 index 0000000..f4ec3a1 --- /dev/null +++ b/docs/rapports/rapport-final/parts/intro.tex @@ -0,0 +1 @@ +\chapter{Introduction} diff --git a/docs/rapports/rapport-final/parts/manuel.tex b/docs/rapports/rapport-final/parts/manuel.tex new file mode 100644 index 0000000..9354139 --- /dev/null +++ b/docs/rapports/rapport-final/parts/manuel.tex @@ -0,0 +1 @@ +\chapter{Manuel d'utilisation} diff --git a/docs/rapports/rapport-final/parts/organisation.tex b/docs/rapports/rapport-final/parts/organisation.tex new file mode 100644 index 0000000..4e8e30f --- /dev/null +++ b/docs/rapports/rapport-final/parts/organisation.tex @@ -0,0 +1 @@ +\chapter{Organisation du projet} diff --git a/docs/rapports/rapport-final/rapport.bib b/docs/rapports/rapport-final/rapport.bib new file mode 100644 index 0000000..9440199 --- /dev/null +++ b/docs/rapports/rapport-final/rapport.bib @@ -0,0 +1,5 @@ +@online{ptf-collision-response, + author = "Randy Gaul", + title = "How to Create a Custom 2D Physics Engine: The Basics and Impulse Resolution", + howpublished = "\url{http://goo.gl/G0gdWU}" +} diff --git a/docs/rapports/rapport-final/rapport.pdf b/docs/rapports/rapport-final/rapport.pdf new file mode 100644 index 0000000..87eca1c Binary files /dev/null and b/docs/rapports/rapport-final/rapport.pdf differ diff --git a/docs/rapports/rapport-final/rapport.tex b/docs/rapports/rapport-final/rapport.tex new file mode 100644 index 0000000..b0f9023 --- /dev/null +++ b/docs/rapports/rapport-final/rapport.tex @@ -0,0 +1,42 @@ +\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}