47 lines
1.1 KiB
TeX
47 lines
1.1 KiB
TeX
\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
|
|
|
|
\usepackage{minted} % intégration code
|
|
\usemintedstyle{emacs}
|
|
|
|
\title{\textbf{TP1 - Sokoban}}
|
|
\author{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{Alogorithme}
|
|
TODO
|
|
|
|
\section{Précalculs}
|
|
TODO
|
|
|
|
\section{Problèmes}
|
|
\begin{figure}[h]
|
|
\centering
|
|
\begin{tabular}{c|c|c|c}
|
|
Nombre max caisses déplacées & Solution & Temps calcul & Temps précalculs \\
|
|
\hline
|
|
TODO & TODO & TODO & TODO \\
|
|
\end{tabular}
|
|
\end{figure}
|
|
|
|
\end{document}
|