diff --git a/TP2/Rapport/.gitignore b/TP2/Rapport/.gitignore new file mode 100644 index 0000000..e03e23c --- /dev/null +++ b/TP2/Rapport/.gitignore @@ -0,0 +1,2 @@ +!*.tex +!Makefile diff --git a/TP2/Rapport/Makefile b/TP2/Rapport/Makefile new file mode 100644 index 0000000..47c0ce0 --- /dev/null +++ b/TP2/Rapport/Makefile @@ -0,0 +1,15 @@ +NAME = rapport +TEX = $(NAME).tex +SRC = $(TEX) +PDF = $(TEX:.tex=.pdf) +# FLAGS = -shell-escape # pour minted + +all: $(PDF) + +$(PDF): $(SRC) + @pdflatex $(FLAGS) $(TEX) + pdflatex $(FLAGS) $(TEX) + +clean: + rm -rf _minted-$(NAME)/ $(PDF) $(NAME).aux $(NAME).log $(NAME).out \ + $(NAME).toc $(NAME).fdb_latexmk $(NAME).fls $(NAME).synctex.gz diff --git a/TP2/Rapport/rapport.tex b/TP2/Rapport/rapport.tex new file mode 100644 index 0000000..7b8370a --- /dev/null +++ b/TP2/Rapport/rapport.tex @@ -0,0 +1,35 @@ +\documentclass{article} + + +\usepackage[T1]{fontenc} % encodage +\renewcommand{\familydefault}{\sfdefault} % police en sans-serif + +\usepackage[french]{babel} % langue +\frenchsetup{SmallCapsFigTabCaptions=false} + +\usepackage[hidelinks]{hyperref} % liens cliquable dans la table des matières + +\usepackage{graphicx} % images +% \usepackage{caption} + +\usepackage[a4paper, left=20mm, top=20mm]{geometry} % dimensions de la page + +\title{\textbf{TP2 - Breakthrough}} +\author{Groupe 4\thanks{César PICHON, Florian POSEZ, Omar ANOUAR, Anri KENNEL}\\ + \\Intelligence artificielle pour les jeux $\cdot$ Université Paris 8} + +\date{Année universitaire 2022-2023} + +\begin{document} +\maketitle +\tableofcontents +\clearpage + +\section{Particularités} +\subsection{Algorithme} +\dots + +\subsection{Optimisation·s} +\dots + +\end{document}