3
0

Squelette de fichier

Cette révision appartient à :
Florian Hatat
2026-04-28 09:23:13 +02:00
révision 5f929a03c7
+50
Voir le fichier
@@ -0,0 +1,50 @@
\documentclass[10pt,a4paper]{article}
\usepackage[french]{babel}
\usepackage[utf8]{inputenc}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{amsthm}
\usepackage{amssymb}
\usepackage{stmaryrd}
\usepackage{tikz}
\usepackage{algorithm}
\usepackage{algpseudocode}
\usepackage{minted}
\usepackage{fullpage}
\usepackage{enumerate}
\theoremstyle{definition}
\newtheorem{question}{Question}
\newtheorem{definition}{Définition}
\newtheorem{theorem}{Théorème}
% Algorithmes
\renewcommand{\listalgorithmname}{Liste des algorithmes}
\floatname{algorithm}{Algorithme}
\renewcommand{\algorithmicreturn}{\textbf{renvoyer}}
\renewcommand{\algorithmicprocedure}{\textbf{procédure}}
\renewcommand{\algorithmicfunction}{\textbf{fonction}}
\renewcommand{\algorithmicrequire}{\textbf{Entrée~:}}
\renewcommand{\algorithmicensure}{\textbf{Sortie~:}}
\renewcommand{\algorithmiccomment}[1]{\hfill\texttt{// #1}}
\renewcommand{\algorithmicend}{\textbf{fin}}
\renewcommand{\algorithmicif}{\textbf{si}}
\renewcommand{\algorithmicthen}{\textbf{alors}}
\renewcommand{\algorithmicelse}{\textbf{sinon}}
\renewcommand{\algorithmicfor}{\textbf{pour}}
\renewcommand{\algorithmicforall}{\textbf{pour tout}}
\renewcommand{\algorithmicdo}{\textbf{faire}}
\renewcommand{\algorithmicwhile}{\textbf{tant que}}
\newcommand{\algorithmicelsif}{\algorithmicelse\ \algorithmicif}
\newcommand{\algorithmicendif}{\algorithmicend\ \algorithmicif}
\newcommand{\algorithmicendfor}{\algorithmicend\ \algorithmicfor}
\title{Épreuve d'option informatique MP}
\author{Concours Mines Ponts}
\date{2026-04-27}
\begin{document}
\maketitle
\end{document}