% Packages
\usepackage{amsmath}
\usepackage{amsthm}
\usepackage{amsfonts}
\usepackage[francais]{babel}
\usepackage[latin1]{inputenc}
\usepackage{fancybox}
\usepackage{fancyhdr}
\usepackage{xcolor}
\usepackage[colorlinks=true,
menucolor=red,
breaklinks=true,
urlcolor=blue,
linkcolor=blue]{hyperref}
\usepackage[left=1cm,
right=1.5cm,
top=0.2cm,
bottom=1cm]{geometry}
\usepackage{cancel}
% Fin packages
% Numérotation
\renewcommand{\thesection}{\Roman{section}}
\renewcommand{\thesubsection}{\arabic{subsection}.}
% Fin numérotation
% Environnement
\newtheorem{exercice}{Exercice}
\newenvironment{exo}
{\begin{exercice}\normalfont} {\end{exercice}}
\newtheorem{corrige}{Corrigé}
\newenvironment{corr}
{\begin{corrige}\normalfont} {\end{corrige}}
\newtheorem{methode}{Méthode}
\newenvironment{modo}
{\begin{methode}\normalfont} {\end{methode}}
\newtheorem{definition}{Définition}
\newenvironment{defi}
{\begin{definition}\normalfont} {\end{definition}}
\newtheorem{theoreme}{Théorème}
\newenvironment{theo}
{\begin{theoreme}\normalfont} {\end{theoreme}}
% Fin environnement
% Ensembles
\newcommand{\R}{{\mathbb R}} % L'ensemble des réels
\newcommand{\N}{{\mathbb N}} % L'ensemble des Entiers
\newcommand{\Q}{{\mathbb Q}} % L'ensemble des rationnels
\newcommand{\Z}{{\mathbb Z}} % L'ensemble des relatifs
\newcommand{\C}{{\mathbb C}} % L'ensemble des complexes
\newcommand{\F}{{\mathbb F}} % L'ensemble F
\newcommand{\I}{{\mathbb I}} % L'ensemble I
\newcommand{\K}{{\mathbb K}} % L'ensemble K
\newcommand{\E}{{\mathbb E}} % L'ensemble E
% Fin ensembles
% Symboles
\newcommand{\eps}{\epsilon} % epsilon
\newcommand{\ssiG}{\Longleftrightarrow} % si et seulement si : grande
\newcommand{\impG}{\Longrightarrow} % implication : grande
\newcommand{\donneG}{\longmapsto} % donne : grande
\newcommand{\conV}{\longrightarrow} % converge : grande
\newcommand{\vect}{\overrightarrow} % pour l'écriture des vecteurs
\newcommand{\oo}{\infty} % Infini
\newcommand{\cad}{c'est-à-dire} % C'est-à-dire
\newcommand{\dron}{\partial} % Dérivées partielles
\newcommand{\dive}{{\mbox{div}}} % Divergence
\newcommand{\rot}{{\mbox{\vect{rot}}}} % Rotationnel
% Fin symboles
% Autres
\everymath{\displaystyle}
% Fin Autres
% Entête
\pagestyle{fancy} \fancyhf{}
\fancyhead[R]{\thepage}
\fancyhead[L]{\textbf{Le titre}}
\renewcommand{\headrulewidth}{0.3pt}
\addtolength{\headheight}{12.3pt}
\fancypagestyle{plain}{
\fancyhead[R]{\thepage}
\fancyhead[L]{}
\renewcommand{\headrulewidth}{0pt}
}
\linespread{1.4}
% Fin entête