add report
This commit is contained in:
parent
bbcad698cb
commit
089900614e
3 changed files with 52 additions and 0 deletions
2
TP2/Rapport/.gitignore
vendored
Normal file
2
TP2/Rapport/.gitignore
vendored
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
!*.tex
|
||||||
|
!Makefile
|
15
TP2/Rapport/Makefile
Normal file
15
TP2/Rapport/Makefile
Normal file
|
@ -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
|
35
TP2/Rapport/rapport.tex
Normal file
35
TP2/Rapport/rapport.tex
Normal file
|
@ -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}
|
Reference in a new issue