\documentclass[a4paper,11pt]{article} 
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%% PACKAGES %%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

\usepackage[greek,frenchb]{babel}	% Typo francaise.
%\usepackage[francais]{babel}
%\usepackage[babel=true,kerning]{microtype} % lequel ???????????
%\FrenchItemizeSpacingfalse	% Pour avoir des \bullet dans les {itemize} %%Marche pas :(
\frenchbsetup{ItemLabels=\textbullet}
\frenchbsetup{og=«,fg=»}
\usepackage[T1]{fontenc}	% Accents codés dans la fonte.
\usepackage[utf8x]{inputenc}	% Accents 8 bits dans le fichier.
\usepackage[a4paper]{geometry}  % papier a4
\usepackage{theorem,graphicx} %??
\usepackage{lmodern}            % fontes 
%\usepackage{garamond}           % fontes : gael v.
%%%%%% Dessins et figures %%%%%%
\usepackage{tikz}               % Tikz, la racine 
\usepackage{tkz-tab}            % Extension de Matthes : tableaux de variations
%%%%%% Include pdf (pour les sujets de concours p.e.) %%%%%%
\usepackage{pdfpages}
%%%%%% Fond, image en haut à gauche, et autres kékéitudes %%%%%%
\usepackage{wallpaper}
\usepackage{hyperref}
%%%%%% Symboles %%%%%%
\usepackage{amssymb,amsmath}    % symboles AMS
\usepackage{arcs}               % l'arc AM
\usepackage{amsfonts}	        % Des fontes, eg pour \mathbb.
\usepackage{verbatim}	        % Pour les codes sources en informatique.
\usepackage{mathrsfs}           % Cursives en mode maths
\usepackage{stmaryrd}           % \rr et \llbracket

%%%%%% Tableaux %%%%%%
\usepackage{array}
\usepackage{tabularx}
%\usepackage{supertabular}	% Les grands tableaux.
%\usepackage{longtable}
\usepackage{multicol}           % Multi colonne (tableaux)
%\usepackage[table]{xcolor}      % Couleur dans les tableaux

%%%%%% Mise en page %%%%%%
\usepackage{paralist}           % Enumerate horizontal
\usepackage{fancyhdr}           % pied et tete de page

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%% /PACKAGES %%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%



%%%%%% Marges %%%%%%
\setlength{\textwidth}{18cm} % a regler
\setlength{\oddsidemargin}{-1cm}
\setlength{\topmargin}{-2cm}
\setlength{\textheight}{26cm}
\setlength{\parindent}{0pt}

%%%%%% Toutes les maths en displaystyle %%%%%%
\everymath{\displaystyle}

%%%%%% pied et tete de page : reglage %%%%%%
\pagestyle{fancy}
%\lhead[\thepage]{\footnotesize\Titre}
%\chead[]{}
%\rhead[\footnotesize\Titre]{\thepage}
\lhead[]{\Type}
\chead[]{}
\rhead[]{\NomChapitre}
\lfoot[]{\thepage}
\cfoot[]{}
\rfoot[]{}


%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%% TRUCS COMPLIQUÉS %%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

%%%%% TODO :
% - itemize avec titre souligné / joli (subparagraph ?)
% - surligner les passages importants (pgf ?)

%%%%%% Titre de feuille/DS/DM || environnement vide %%%%%%
 \newcommand{\LeTitre}[2]{%
 \title{}\date{}\author{}
 \maketitle
 \vspace{-4.5cm}
   \begin{center}%
     \fbox{ %
       \large%
       {#1} : {#2}%
     }%
   \end{center}\medskip}

 %%% idée d'inter-titre global ?
 % \newcommand{\LeTitre}[1][2]{
 %   \begin{center}
 %     \rule[0.5ex]{90mm}{1mm}\\ 
 %     \large
 %     \bf #1
 %     \\\rule[0.5ex]{90mm}{1mm}
 %   \end{center}}

 %%% pour virer les titres : version 1
 %\newcommand{\LeTitre}[1][2]{}
 %%% pour virer les titres : version 2
 %\usepackage{noprint} %% Paquet Fanfa
 %\newcommand{\LeTitre}[1][2]{\begin{noPrint} #1#2\end{noPrint}}


%%%%%% Deux colonnes avec tabular %%%%%%
 \newenvironment{DeuxCol}[2]
     {\noindent%
      \begin{tabular}[t]{@{\hspace{0pt}}p{{#1}\linewidth}p{{#2}\linewidth}@{\hspace{0pt}}}}  
     {\end{tabular}}

 \newenvironment{DeuxColSep}[2]
     {\noindent%
      \begin{tabular}[t]{@{\hspace{0pt}}p{{#1}\linewidth}|p{{#2}\textwidth}@{\hspace{0pt}}}}
     {\end{tabular}}
 % Usage : \begin{DeuxCol}{.2}{.8} blabla & blo \end{DeuxCol}


%%%%%% Changement de hauteur des lignes d'un tableau %%%%%%
 \newenvironment{HauTab}[1]{%
        \renewcommand{\arraystretch}{#1}}{%
        \renewcommand{\arraystretch}{1}}
 % Usage : \begin{HauTab}{1.4} \end{HauTab}


%%%%%% Compteurs (enumerate et variantes persos): %%%%%%
 %% Nouveau : nunumerate
 \newcounter{nunumi}
 \newcommand{\itemnu}{\stepcounter{nunumi}\textbf{\thenunumi) }}
 \newcounter{nunuumi}
 \newcommand{\itemnuu}{\stepcounter{nunuumi}\textbf{\alph{nunuumi}) }}
 %% Anciens : style dans enumerate
 \renewcommand{\labelenumi}{\textbf{\theenumi)}}
 \renewcommand{\labelenumii}{\textbf{\theenumii)}}
 \renewcommand{\labelenumiii}{\textbf{\theenumiii)}}
 


%%% pseudo-Enumerate dans un tabular
\newenvironment{nunumerate}[3]
            {\center
              \renewcommand{\arraystretch}{#3}
                \tabularx{#1\linewidth}{*{#2}{X}l}%
                  \setcounter{nunumi}{0}\setcounter{nunuumi}{0}}
            {\endtabularx
              \renewcommand{\arraystretch}{1}
             \endcenter}
%%% Usage : 
%% \begin{nunumerate}{proportion de \linewidth}{nombre de colonnes-1}{arraystretch} 
%%  \itemnu bla & \itemnu blo \\
%%  \itemnu bla & \itemnu blo
%% \end{nunumerate}


%%%%%% itemize bullet <-- plus propre ? %%%%%%
 \newenvironment{itemiz}{\renewcommand \labelitemi{$\bullet$}\begin{itemize}}{\end{itemize}}
 % \newenvironment{doubleincl}{\renewcommand \labelitemi{$\bullet$}\begin{itemize}}{\end{itemize}}

%%%%%% Style « indication » %%%%%%
 \def\indic#1{\underline{Indication} : \emph{#1}}


%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%% /TRUCS COMPLIQUÉS %%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%% RACCOURCIS %%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
 
%%%%%% Ensembles de nombres %%%%%%
 \def\N{\mathbb{N}}
 \def\Z{\mathbb{Z}}
 \def\Q{\mathbb{Q}}
 \def\R{\mathbb{R}}
 \def\C{\mathbb{C}}
 \def\K{\mathbb{K}}
 \def\k{{\bf k}}
 \def\U{\mathbb{U}}
\newcommand{\ZZ}[1][\ensuremath{n}]{\ensuremath{\Z/#1\Z}}
    % \ZZ[n] --> Z/nZ
    % \ZZ[2] --> Z/2Z
    % \ZZ    --> Z/nZ

%%%%%% Algèbre linéaire
 %% vecteurs & co
 \def\vect#1{\overrightarrow{#1}}
 \newcommand{\vecti}{\ensuremath{\vect{\imath}}}
 \newcommand{\vectj}{\ensuremath{\vect{\jmath}}}
 \newcommand{\vectk}{\ensuremath{\vect{k}}}
 \newcommand{\vcol}[1]{\ensuremath{\begin{pmatrix}#1\end{pmatrix}}}
 \newcommand{\norme}[1]{\ensuremath{\Arrowvert #1 \Arrowvert}}
 \newcommand{\normet}[1]{\ensuremath{\Arrowvert\arrowvert #1 \arrowvert\Arrowvert}}
 %% sous-ensemble de M_n
%\newcommand{\gS}{\ensuremath{\mathfrak{S}}} 
\newcommand{\gGL}{\ensuremath{\mathfrak{GL}}}        
 \def\cGL{\mathcal{GL}}% Ou \gGL, mais je préfère mathscr
 %% Ker, Im, spectre, Mat, etc...
 \DeclareMathOperator{\Ker}{Ker\,}
 \renewcommand{\ker}{\Ker}					% Synonyme
 \DeclareMathOperator{\im}{Im\,}
 \DeclareMathOperator{\coker}{Coker\,}
 \DeclareMathOperator{\mat}{Mat\,}

 \DeclareMathOperator{\Vect}{Vect\,}	% Ne pas confondre avec \vect
 \DeclareMathOperator{\rg}{rg\,}		% Le rang
 \DeclareMathOperator{\tr}{Tr\,}		% La trace
 \DeclareMathOperator{\Sp}{Sp\,}		% Le spectre
 \DeclareMathOperator{\spectre}{sp\,}
 \DeclareMathOperator{\card}{Card\,}		% Le card
 \DeclareMathOperator{\id}{id\,}		% identité
 \DeclareMathOperator{\grad}{\vect{\rm grad}\,}	% gradient
 \DeclareMathOperator{\ad}{ad\,}	        % Ad
 \DeclareMathOperator{\Hom}{Hom\,}	        % Hom(omorphismes)

 %\newcommand{\Ouv}{\ensuremath{(O,\vect{u},\vect{v})}}
 %\newcommand{\Oij}{\ensuremath{(O,\vecti,\vectj)}}
 %\newcommand{\Oijk}{\ensuremath{(O,\vecti,\vectj,\vectk)}} [à virer]

%%%%%% Les droites et courbes %%%%%%
 \def\cA{\mathscr{A}} % Aire
 \def\cB{\mathscr{B}} % boule \cB_n
 \def\cC{\mathscr{C}} % \cC_f
 \def\cD{\mathscr{D}} % \cD_f
 \def\cE{\mathscr{E}} % 
 \def\cF{\mathscr{F}} % fcts continues
 \def\cG{\mathscr{G}} % groupe engendré (DS1_2011)
 \def\cI{\mathscr{I}} % Idéaux
 \def\cL{\mathscr{L}} % u \in \cL(E,F)
 \def\cM{\mathscr{M}} % M \in \cM(\R)
 \def\cN{\mathscr{N}} % Matrices nilpotentes
 \def\cO{\mathscr{O}} % Hum...
 \def\cP{\mathscr{P}}
 \def\cQ{\mathscr{Q}}
 \def\cR{\mathscr{R}}
 \def\cS{\mathscr{S}}
 \def\cT{\mathscr{T}}
 \def\cU{\mathscr{U}}
 \def\cV{\mathscr{U}} % Volume
%%%%%% Lettres mathcal %%%%%%
\def\mcA{\mathcal{A}} % matrices antisymétriques
\def\mcB{\mathcal{B}} %  
\def\mcC{\mathcal{C}} % Cône, 
\def\mcL{\mathcal{L}} % transformée de Laplace
\def\mcP{\mathcal{P}} % 
\def\mcS{\mathcal{S}} % matrices symétriques
\def\mcT{\mathcal{T}} % Plan tangent ?
%%%%%% Lettres gothiques %%%%%%
\def\mkP{\mathfrak{P}} % 


%%%%%% Lettres grecques %%%%%%
 \newcommand{\eps}{\varepsilon}

%%%%%% Abréviations / texte %%%%%%
 \def\ssi{si et seulement si}
 \def\cad{c'est-\`a-dire}
 \def\Cad{C'est-\`a-dire}
\def\cns{condition nécessaire et suffisante}
 \def\cf{{\em cf. }}
 \def\IPP{intégration par partie}
\def\sev{sous-espace vectoriel}
\def\sevs{sous-espaces vectoriels}
\def\seps{sous-espaces propres}
\def\sep{sous-espace propre}
\def\evn{espace vectoriel normé}
 %% Pour placer une conjonction entre deux termes dans une formule centrée.
 \newcommand{\qouq}{\quad\text{ou}\quad\null}
 \newcommand{\qqouqq}{\qquad\text{ou}\qquad\null}
 \newcommand{\qetq}{\quad\text{et}\quad\null}
 \newcommand{\qqetqq}{\qquad\text{et}\qquad\null}
 \newcommand{\qcarq}{\quad\text{car}\quad\null}
 \newcommand{\qqcarqq}{\qquad\text{car}\qquad\null}
 \newcommand{\qavecq}{\quad\text{avec}\quad\null}
 \newcommand{\qqavecqq}{\qquad\text{avec}\qquad\null}
 \newcommand{\qpuisq}{\quad\text{puis}\quad\null}
 \newcommand{\qqpuisqq}{\qquad\text{puis}\qquad\null}
 \newcommand{\qssiq}{\quad\Longleftrightarrow\quad\null}
 \newcommand{\qqssiqq}{\qquad\Longleftrightarrow\qquad\null}

%%%%%% Changement de style de différents symboles et lettres %%%%%%
 \renewcommand{\phi}{\varphi}
 \renewcommand{\leq}{\ensuremath{\leqslant}}
 \renewcommand{\geq}{\ensuremath{\geqslant}}
 \newcommand{\ronde}[1]{\ensuremath{\mathring{#1}}} % pour faire des intérieurs
 \newcommand{\Rez}{\ensuremath{\mathop{\text{Re}\,}\nolimits}} % nombres complexes
 \newcommand{\Imz}{\ensuremath{\mathop{\text{Im}\,}\nolimits}} % nombres complexes



%%%%%% Fonctions %%%%%%
 %% Fonction.
   \newcommand{\fonction}[5]{%
        \ensuremath{#1\colon
        \left\{\hskip -1.5 mm
        \begin{array}{c@{\ }c@{\ }l}
        \medskip #2 & \longrightarrow & #3 \\
        #4 & \longmapsto & #5 \\
        \end{array}
        \right .
        }}
   % Exemple: $ \fonction{f}{ \R }{ \Z }{ x }{ \partieentiere{x} } $
 %% Barres verticales (valeur absolue, det, ...) de bonne taille.
   \newcommand{\abs}[1]{\left|{#1}\right|}
   \newcommand{\set}[1]{\left\{ #1 \right\}}
   \newcommand{\inte}[2]{\left\llbracket #1, #2\right\rrbracket}

 %% Éléments différentiels
   \newcommand{\dd}{\ensuremath{\mathrm{d}}}
   \newcommand{\dt}{\ensuremath{\:\dd t}}
   \newcommand{\ds}{\ensuremath{\:\dd s}}
   \newcommand{\dx}{\ensuremath{\:\dd x}}
   \newcommand{\dy}{\ensuremath{\:\dd y}}
   \newcommand{\dz}{\ensuremath{\:\dd z}}
   \newcommand{\du}{\ensuremath{\:\dd u}}
   \newcommand{\dv}{\ensuremath{\:\dd v}}
   \newcommand{\dr}{\ensuremath{\:\dd r}}
   \newcommand{\dS}{\ensuremath{\,\dd\!\vect{S}}}	% Élément de surface
   \newcommand{\dl}{\ensuremath{\,\dd\!\vect{\ell}}}	% Élément de longueur
   \newcommand{\dtheta}{\ensuremath{\:\dd \theta}}
   \newcommand{\dphi}{\ensuremath{\:\dd \varphi}}
   \newcommand{\dtau}{\ensuremath{\:\dd \tau}}
   \newcommand{\dV}{\ensuremath{\:\dd V}}

 %% La fonction indicatrice.
   \newcommand{\indicatrice}{\ensuremath{\mathds{1}}}
 %% Petito et Grando
   \newcommand{\petito}{\ensuremath{{\text{o}}}}
   \newcommand{\grando}{\ensuremath{{\text{O}}}}
 %% Les chapeaux et les tildes doivent avoir une bonne taille pour être bien
 %% visibles et éviter ainsi les confusions.
   \renewcommand{\hat}[1]{\ensuremath{\widehat{#1}}}
   \renewcommand{\tilde}[1]{\ensuremath{\widetilde{#1}}}
% Fonctions trigonomÃ©trique et rÃ©ciproques
\DeclareMathOperator{\sh}{sh\,}
\DeclareMathOperator{\ch}{ch\,}
\renewcommand{\sinh}{\sh}					% Synonyme
\renewcommand{\cosh}{\ch}					% Synonyme
\renewcommand{\th}{\ensuremath{\mathop{\rm th\,}\nolimits}}
\renewcommand{\coth}{\ensuremath{\mathop{\rm coth\,}\nolimits}}
%
\DeclareMathOperator{\argsh}{Argsh\,}
\DeclareMathOperator{\argch}{Argch\,}
\DeclareMathOperator{\argth}{Argth\,}
\DeclareMathOperator{\argcoth}{Argcoth\,}
\newcommand{\Argsh}{\argsh}					% Synonyme
\newcommand{\Argch}{\argch}					% Synonyme
\newcommand{\Argth}{\argth}					% Synonyme
\newcommand{\Argcoth}{\argcoth}					% Synonyme
%
\DeclareMathOperator{\cotan}{cotan\,}
\renewcommand{\arcsin}{\ensuremath{\mathop{\rm Arcsin\,}\nolimits}}
\renewcommand{\arccos}{\ensuremath{\mathop{\rm Arccos\,}\nolimits}}
\renewcommand{\arctan}{\ensuremath{\mathop{\rm Arctan\,}\nolimits}}
\DeclareMathOperator{\arccot}{Arccot\,}


%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%% /RACCOURCIS %%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

\newcommand{\cH}{\ensuremath{\mathcal{H}}}
%\newcommand{\QQ}{\ensuremath{\mathcal{Q}}}
	% Quand \PP est déjà utilisé, ou pour une famille de polynômes...
\newcommand{\rec}[2]{\underline{\ensuremath{\mathcal{H}_{#1} \Longrightarrow%
        \mathcal{H}_{#2}}}}
	% $\rec{n}{n+1}$ <==> \underline{$\PP{n} \Longrightarrow\PP{n+1}$}
\newcommand{\recz}[1][0]{\underline{\ensuremath{\mathcal {H}_{#1}}}}
	% L'initialisation de la récurrence.
	% On écrit $\recz[2]$ pour partir de $n=2$.
	% Si on ne précise pas d'argument optionnel, la valeur 0 est utilisée.


%%% D\'efinition des environnements "exo" et "sol"
% \theoremstyle{break}\theorembodyfont{\rm}
% \newtheorem{exo}{\Large Exercice}
% \newtheorem{qc}[exo]{Question de cours}
%\theoremstyle{definition}
%\newtheorem{deftn}{D\'efinition} \renewcommand{\thedeftn}{\empty{}} 
\newenvironment{sol}{\noindent\textbf{Solution.}}{\hfill $\Box$\vspace{5mm}}


\def\inter_exo{\rule[0.5ex]{\linewidth}{0.3mm}}
%\def\inter_exo{\bigskip}

%%%%%% la correction %%%%%%

\def\rmqbla#1{{\small{\em {\color{gray} #1}}}}
\def\correction#1{{\color{violet}{\noindent\textbf{Solution.} #1}}}


%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%% Spécifique Exo %%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

%\ThisURCornerWallPaper{0.18}{../../icones/revisions.jpg}

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%% Spécifique Maple %%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

\def\maple#1{{\color{red}{\bfseries \textsf{#1}}}}

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%% Spécifique Python %%%%%%%%%%%%%%%% % A déplacer
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

\def\Nfich#1{\mbox{{\bfseries \textsf{#1}}}} % Noms de répertoire et de fichiers
\def\touche#1{\mbox{{\bfseries \textsf{#1}}}} % CTRL et autres

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%% Spécifique DMs %%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

%%% Le barème
 \def\bareme#1{\hfill {$\color{blue} (#1\,\mathrm{pts})$}}

%%% Center+Encadrer les résultats
\newenvironment{cfb}
            {\smallskip \center%
              \fbox}
            {%
             \endcenter\medskip}
%%%%%%%%%%%%% Piqué UPS, à lire / travailler :
%------- pour encadrer un r\'esultat -------cf L\'eger
%-- encadre ne respecte pas la ligne de base, encadrebien la respecte !
% \long\def\encadre#1{\hskip 0em\vbox{\hrule\hbox{\vrule%-- hskip pour aligner tab
% \vbox spread 6pt{\vfil\hbox spread 6pt{\hfil#1\hfil}\vfil}%
% \vrule}\hrule}}

% \long\def\Encadre#1#2{\hskip 0em\vbox{\hrule\hbox{\vrule%-- hskip pour aligner tab
% \vbox spread #2{\vfil\hbox spread #2{\hfil#1\hfil}\vfil}%
% \vrule}\hrule}}

% \long
% \def\encadrebien#1{\setbox100=\hbox{\kern3pt\relax #1\kern3pt}%
% \dimen100=\wd100%
% \dimen110=\dp100%
% \advance\dimen110 by 3pt%--- d\'ecalage pour encadrer : 3 points
% \advance\dimen100 by 0.8pt%--- Pour tenir compte de la largeur des \vrule
% \setbox101=\vbox{\hrule\hbox to \dimen100{\vrule height 3pt\hfil\vrule}}%
% \setbox102=\vtop{\hbox{\vrule depth \dimen110\hfil\box100\hfil\vrule}%
%                  \hrule width \dimen100}%
% \leavevmode\vbox{\offinterlineskip\box101\box102}}




%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%% Spécifique DST %%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

\def\FinEpreuve{\begin{center}{\large {\bfseries  FIN DE L'\'EPREUVE}}\end{center}}

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%% Spécifique Cours %%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

%% Remarque, comme chez H&K
% \newif\ifremarque -> lourd...

% \newenvironment{remarque}
%         {\remarquetrue\bigskip\noindent\begin{filet}}   % Voir plus bas.
%         {\end{filet}\bigskip\remarquefalse}
