import work from year 2016-2017
249
tools/style/base.sty
Executable file
@@ -0,0 +1,249 @@
|
||||
\NeedsTeXFormat{LaTeX2e}
|
||||
|
||||
% extensions
|
||||
|
||||
\RequirePackage[utf8x]{inputenc}
|
||||
\RequirePackage[francais]{babel}
|
||||
\RequirePackage[T1]{fontenc}
|
||||
\RequirePackage{amssymb}
|
||||
\RequirePackage{amsmath}
|
||||
\RequirePackage{amsfonts}
|
||||
\RequirePackage{subfig}
|
||||
\RequirePackage{graphicx}
|
||||
\RequirePackage{color}
|
||||
\RequirePackage{gensymb}
|
||||
\RequirePackage{ifthen, calc}
|
||||
\RequirePackage{tabularx}
|
||||
% Symbole euro
|
||||
\RequirePackage{eurosym}
|
||||
% Faire des boites
|
||||
\RequirePackage{fancybox}
|
||||
% Espaces pour écrire les grands nombres
|
||||
\RequirePackage[np]{numprint}
|
||||
% Outils pour les tableaux et les fonctions
|
||||
\RequirePackage{tkz-tab}
|
||||
\RequirePackage{tkz-fct}
|
||||
% Pour gérer les todo
|
||||
\RequirePackage[french, textsize=small]{todonotes}
|
||||
% Plusieurs colonnes
|
||||
\RequirePackage{multicol}
|
||||
% inteligent import (see https://codeyarns.com/2010/05/27/latex-import-subimport-for-document-organization/)
|
||||
\RequirePackage{import}
|
||||
|
||||
|
||||
%\RequirePackage{arev}
|
||||
\RequirePackage{kpfonts}
|
||||
\renewcommand*\familydefault{\sfdefault}
|
||||
\RequirePackage[T1]{fontenc}
|
||||
|
||||
% Les tableaux
|
||||
\renewcommand{\arraystretch}{2}
|
||||
|
||||
% Lecture des fichiers csv et affichage des csv en table
|
||||
\RequirePackage{csvsimple}
|
||||
|
||||
%%%%%%%%%%%%%%%%%
|
||||
% Raccourcis %
|
||||
%%%%%%%%%%%%%%%%%
|
||||
|
||||
% Ensembles
|
||||
\newcommand{\N}{\mathbb{N}}
|
||||
\newcommand{\Z}{\mathbb{Z}}
|
||||
%\newcommand{\D}{\mathbb{D}}
|
||||
\newcommand{\Q}{\mathbb{Q}}
|
||||
\newcommand{\R}{\mathbb{R}}
|
||||
\newcommand{\C}{\mathbb{C}}
|
||||
|
||||
\newcommand{\intOO}[2]{\left]{#1}\,{;}\,{#2}\right[} % intervalles ouvert ouvert
|
||||
\newcommand{\intOF}[2]{\left]{#1}\,{;}\,{#2}\right]} % intervalles ouvert fermé
|
||||
\newcommand{\intFO}[2]{\left[{#1}\,{;}\,{#2}\right[} % intervalles fermé ouvert
|
||||
\newcommand{\intFF}[2]{\left[{#1}\,{;}\,{#2}\right]} % intervalles fermé fermé
|
||||
|
||||
|
||||
% Vecteurs
|
||||
\renewcommand{\vec}[1]{\overrightarrow{#1}} % représentation d'un vecteur
|
||||
\newcommand{\norme}[1]{||\vec{#1}||} % Norme d'un vecteur
|
||||
\newcommand{\scal}[2]{\vec{#1} \cdot \vec{#2}} % Produit scalaire
|
||||
\newcommand{\vectCoord}[2]{{\renewcommand{\arraystretch}{1}%
|
||||
\left(\begin{array}{c} #1 \\ #2 \end{array} \right)%
|
||||
}}
|
||||
|
||||
% Proba
|
||||
\newcommand{\coefBino}[2]{\vectCoord{#1}{#2}}
|
||||
|
||||
% Logique
|
||||
\renewcommand{\equiv}{\Leftrightarrow}
|
||||
|
||||
% Calculatrice
|
||||
\usepackage{listings}
|
||||
\newcommand{\calc}[1]{\Ovalbox{\lstinline|#1|}}
|
||||
%\newcommand{\calc}[1]{\verb!#1!}
|
||||
|
||||
% Autres
|
||||
\newcommand{\TODO}[1]{\textcolor{red}{note(#1)}}
|
||||
|
||||
% Poser des opérations
|
||||
\RequirePackage[letterspace=500]{microtype}
|
||||
|
||||
\newcommand{\poseOP}[3]{
|
||||
\textls{
|
||||
$\begin{array}{cr}
|
||||
& #1 \\[-0.3cm]
|
||||
#2 & #3 \\
|
||||
\hline
|
||||
&
|
||||
\end{array}$}
|
||||
}
|
||||
|
||||
|
||||
%%%%%%%%%%%%%%%%%%%%%%
|
||||
% Environment Exo %
|
||||
%%%%%%%%%%%%%%%%%%%%%%
|
||||
|
||||
\newcounter{exo}[section]
|
||||
\setcounter{exo}{0}
|
||||
\newenvironment{Exo}[1][0]{%
|
||||
\addtocounter{exo}{1}
|
||||
\medskip
|
||||
\noindent%
|
||||
\textbf{\color{exercice}{Exercice \theexo}} \hspace{0.5cm} \color{line}\hrulefill \hspace{0.5cm} \color{exercice}
|
||||
\ifthenelse{\equal{#1}{0}}%
|
||||
{}%
|
||||
{#1}
|
||||
% \ifthenelse{\lengthtest{#1 pt = 1pt}}{#1 point}{#1 points}}%
|
||||
\par
|
||||
\medskip
|
||||
\color{text}
|
||||
}{\par%
|
||||
}
|
||||
|
||||
\newcommand{\exo}[1]{{\centering \textbf{#1} \par}}
|
||||
|
||||
% New environment définitions
|
||||
\newenvironment{Def}{%
|
||||
\medskip
|
||||
\noindent \textbf{Définition:}
|
||||
}{%
|
||||
}
|
||||
|
||||
% New environment exemples
|
||||
\newenvironment{Ex}{%
|
||||
\medskip
|
||||
\noindent \textbf{Exemples:}
|
||||
}{%
|
||||
}
|
||||
|
||||
% New environment propriété
|
||||
\newenvironment{Prop}{%
|
||||
\medskip
|
||||
\noindent \textbf{Propriété:}
|
||||
}{%
|
||||
}
|
||||
|
||||
% New environment Démo
|
||||
\newenvironment{Demo}{%
|
||||
\medskip
|
||||
\noindent \textbf{Démonstration:}
|
||||
}{%
|
||||
\\ $\triangle$
|
||||
}
|
||||
|
||||
% New environment remarque
|
||||
\newenvironment{Rmq}{%
|
||||
\medskip
|
||||
\noindent \textbf{Remarque:}
|
||||
}{%
|
||||
}
|
||||
|
||||
% New environment methode
|
||||
\newenvironment{Mthd}{%
|
||||
\medskip
|
||||
\noindent \textbf{Méthode:}
|
||||
}{%
|
||||
}
|
||||
|
||||
|
||||
\newenvironment{hint}{%
|
||||
Indication:
|
||||
\begin{itshape}
|
||||
}{%
|
||||
\end{itshape}
|
||||
}
|
||||
|
||||
\def\title#1{\gdef\@title{#1}\gdef\Thetitle{#1}}
|
||||
\def\date#1{\gdef\@date{#1}\gdef\Thedate{#1}}
|
||||
|
||||
% ##########################
|
||||
% Tikz shortcuts
|
||||
% ##########################
|
||||
|
||||
% Les dessins
|
||||
\RequirePackage{tikz}
|
||||
|
||||
%% le cercle trigo
|
||||
\newcommand{\cercleTrigo}%
|
||||
{%
|
||||
\draw[->, very thick] (-1.2,0) -- (1.3, 0);
|
||||
\draw[->, very thick] (0,-1.2) -- (0,1.3);
|
||||
\draw[very thick] (0,0) circle (1);
|
||||
\draw (0,0) node[below left] {$O$};
|
||||
\draw (1,0) node[below right] {$I$};
|
||||
\draw (0,1) node[above left] {$J$};
|
||||
}
|
||||
|
||||
%% Le repère orthonormé avec la grille
|
||||
%%% \repere{xmin}{xmax}{ymin}{ymax}
|
||||
\newcommand{\repere}[4]%
|
||||
{%
|
||||
\draw[very thin, gray] (#1,#3) grid (#2,#4);
|
||||
\draw[->, very thick] (#1,0) -- (#2,0);
|
||||
\draw[->, very thick] (0,#3) -- (0,#4);
|
||||
\draw (0,0) node[below right, scale=0.7 ] {$O$};
|
||||
\draw (0,1) node {-} node[left] {$J$};
|
||||
\draw (1,0) node[rotate=90] {-} node[below] {$I$};
|
||||
}
|
||||
\newcommand{\repereNoGrid}[4]%
|
||||
{%
|
||||
\draw[->, very thick] (#1,0) -- (#2,0);
|
||||
\draw[->, very thick] (0,#3) -- (0,#4);
|
||||
}
|
||||
|
||||
%% Diagramme boite
|
||||
%%% \boxplot{Vertical Center}{min}{Q1}{Me}{Q3}{Max}
|
||||
\newcommand{\boxplot}[6]%
|
||||
{%
|
||||
\filldraw[color=highlightbg, draw=text] (#3, {#1 - 0.5}) rectangle (#5, {#1 + 0.5});
|
||||
\draw (#2, {#1 - 0.5}) -- (#2, {#1 + 0.5}) node[above] {$Min$};
|
||||
\draw (#3, {#1 - 0.5}) -- (#3, {#1 + 0.5}) node[above] {$Q_1$};
|
||||
\draw (#4, {#1 - 0.5}) -- (#4, {#1 + 0.5}) node[above] {$Me$};
|
||||
\draw (#5, {#1 - 0.5}) -- (#5, {#1 + 0.5}) node[above] {$Q_3$};
|
||||
\draw (#6, {#1 - 0.5}) -- (#6, {#1 + 0.5}) node[above] {$Max$};
|
||||
|
||||
\draw (#2, #1) -- (#3, #1);
|
||||
\draw (#5, #1) -- (#6, #1);
|
||||
|
||||
%\draw ({(#2 +#3)/2}, #1) node[above] {25\%};
|
||||
%\draw ({(#3 +#4)/2}, #1) node[above] {25\%};
|
||||
%\draw ({(#4 +#5)/2}, #1) node[above] {25\%};
|
||||
%\draw ({(#5 +#6)/2}, #1) node[above] {25\%};
|
||||
|
||||
}
|
||||
\newcommand{\boxplotNoNames}[6]%
|
||||
{%
|
||||
\filldraw[color=highlightbg, draw=text] (#3, {#1 - 0.5}) rectangle (#5, {#1 + 0.5});
|
||||
\draw (#2, {#1 - 0.5}) -- (#2, {#1 + 0.5});
|
||||
\draw (#3, {#1 - 0.5}) -- (#3, {#1 + 0.5});
|
||||
\draw (#4, {#1 - 0.5}) -- (#4, {#1 + 0.5});
|
||||
\draw (#5, {#1 - 0.5}) -- (#5, {#1 + 0.5});
|
||||
\draw (#6, {#1 - 0.5}) -- (#6, {#1 + 0.5});
|
||||
|
||||
\draw (#2, #1) -- (#3, #1);
|
||||
\draw (#5, #1) -- (#6, #1);
|
||||
}
|
||||
|
||||
% Icones
|
||||
|
||||
\newcommand{\icon}[2][scale=0.4]{%
|
||||
\includegraphics[#1]{/media/documents/Cours/Prof/Enseignements/2016-2017/tools/style/icons/#2.png}%
|
||||
}
|
||||
|
56
tools/style/classBilan.cls
Normal file
@@ -0,0 +1,56 @@
|
||||
\NeedsTeXFormat{LaTeX2e}
|
||||
|
||||
\ProvidesClass{classBilan}
|
||||
|
||||
% classe de base
|
||||
|
||||
%\LoadClass[a4paper,12pt, landscape, twocolumn]{article}
|
||||
\LoadClass[a5paper,12pt]{article}
|
||||
|
||||
|
||||
% extensions
|
||||
|
||||
\RequirePackage{/media/documents/Cours/Prof/Enseignements/2016-2017/tools/style/base}
|
||||
\RequirePackage{/media/documents/Cours/Prof/Enseignements/2016-2017/tools/style/theme}
|
||||
|
||||
\RequirePackage{xcolor,colortbl}
|
||||
|
||||
\pagestyle{empty}
|
||||
|
||||
\RequirePackage{geometry}
|
||||
%\geometry{landscape}
|
||||
\geometry{left=5mm,right=5mm,top=10mm, bottom= 10mm}
|
||||
|
||||
% Séparation au milieu
|
||||
\setlength{\columnsep}{5pt} % default=10pt
|
||||
\setlength{\columnseprule}{0pt} % default=0pt (no line)
|
||||
|
||||
|
||||
% Décorations
|
||||
\newcommand{\op@classe}{}
|
||||
\newcommand{\op@titre}{}
|
||||
\newcommand{\classe}[1]{\renewcommand{\op@classe}{#1}}
|
||||
\newcommand{\titre}[1]{\renewcommand{\op@titre}{#1}}
|
||||
\newcommand{\op@soustitre}{\op@classe{} \hfill \@date{}}%
|
||||
|
||||
\renewcommand{\maketitle}{%
|
||||
\noindent{\huge \color{title}\bfseries Bilan \op@titre}\par
|
||||
\noindent{\color{line}\rule{\linewidth}{1ex}}\par
|
||||
\noindent{\color{subtitle}\bfseries \op@soustitre}\par
|
||||
\vspace{1.5\baselineskip}
|
||||
}
|
||||
|
||||
% Les couleurs de la réussite
|
||||
% \newcommand{\NoRep}{/}
|
||||
% \newcommand{\RepZ}{\cellcolor{black!05}}
|
||||
% \newcommand{\RepU}{\cellcolor{black!30}}
|
||||
% \newcommand{\RepD}{\cellcolor{black!60}}
|
||||
% \newcommand{\RepT}{\cellcolor{black}}
|
||||
\usepackage{tikzsymbols}
|
||||
|
||||
%\newcommand{\RepT}{\color{black!10}\Changey[2][black!70]{0.8}\color{text}}
|
||||
\newcommand{\RepT}{\Smiley[2][black!70]}
|
||||
\newcommand{\RepD}{\Sey[2][black!40]}
|
||||
\newcommand{\RepU}{\Neutrey[2][black!10]}
|
||||
\newcommand{\RepZ}{\Sadey[2]}
|
||||
\newcommand{\NoRep}{(??)}
|
65
tools/style/classConn.cls
Normal file
@@ -0,0 +1,65 @@
|
||||
\NeedsTeXFormat{LaTeX2e}
|
||||
|
||||
\ProvidesClass{classConn}
|
||||
|
||||
% classe de base
|
||||
|
||||
\LoadClass[a5paper, 12pt]{article}
|
||||
|
||||
% extensions
|
||||
|
||||
\RequirePackage{/media/documents/Cours/Prof/Enseignements/2016-2017/tools/style/base}
|
||||
\RequirePackage{/media/documents/Cours/Prof/Enseignements/2016-2017/tools/style/none_beamer}
|
||||
\RequirePackage{/media/documents/Cours/Prof/Enseignements/2016-2017/tools/style/theme}
|
||||
\RequirePackage[explicit]{titlesec} % pour redéfinir \section
|
||||
|
||||
% géométrie
|
||||
\RequirePackage{geometry}
|
||||
\geometry{left=10mm,right=10mm, top=10mm}
|
||||
|
||||
% commandes personnelles
|
||||
|
||||
% Les en-tête et les pieds de pages
|
||||
\RequirePackage{fancyhdr}
|
||||
\pagestyle{empty}
|
||||
%\renewcommand\headrulewidth{0pt}
|
||||
%\fancyhead[R]{}
|
||||
%\fancyfoot[C]{}
|
||||
|
||||
% Description du devoir
|
||||
\newcommand{\op@entete}{}
|
||||
\newcommand{\op@soustitre}{}
|
||||
\newcommand{\op@classe}{}
|
||||
\newcommand{\op@titre}{Connaissance}
|
||||
|
||||
\newcommand{\classe}[1]{\renewcommand{\op@classe}{#1}}
|
||||
\newcommand{\titre}[1]{\renewcommand{\op@titre}{#1}}
|
||||
|
||||
\renewcommand{\op@soustitre}{\op@classe{} -- \@date{}}%
|
||||
\renewcommand{\op@entete}{\@date}
|
||||
|
||||
|
||||
% Redéfinition de maketitle pour ne plus avoir la date
|
||||
\newcounter{sujet}
|
||||
\setcounter{sujet}{0}
|
||||
\newcommand{\sujet}{%
|
||||
\clearpage
|
||||
\setcounter{exo}{0}
|
||||
\addtocounter{sujet}{1}
|
||||
\noindent
|
||||
\begin{minipage}{0.8\textwidth}
|
||||
\noindent{\huge \color{title}\bfseries \op@titre}\par
|
||||
\noindent{\color{line}\rule{\linewidth}{1ex}}\par
|
||||
\noindent{\color{subtitle}\bfseries \op@soustitre}\par
|
||||
\end{minipage}
|
||||
\begin{minipage}{0.2\textwidth}
|
||||
\begin{center}
|
||||
\Huge\thesujet
|
||||
\end{center}
|
||||
\end{minipage}
|
||||
\\[0.2cm]
|
||||
Nom - Prénom:
|
||||
\\[0.2cm]
|
||||
|
||||
\normalsize
|
||||
}
|
79
tools/style/classCours.cls
Normal file
@@ -0,0 +1,79 @@
|
||||
\NeedsTeXFormat{LaTeX2e}
|
||||
|
||||
\ProvidesClass{classCours}
|
||||
|
||||
% classe de base
|
||||
|
||||
\LoadClassWithOptions{article}
|
||||
|
||||
% extensions
|
||||
|
||||
\RequirePackage{/media/documents/Cours/Prof/Enseignements/2016-2017/tools/style/base}
|
||||
\RequirePackage{/media/documents/Cours/Prof/Enseignements/2016-2017/tools/style/none_beamer}
|
||||
\RequirePackage{/media/documents/Cours/Prof/Enseignements/2016-2017/tools/style/theme}
|
||||
|
||||
% géométrie
|
||||
\RequirePackage{geometry}
|
||||
\geometry{left=20mm,right=20mm, top=15mm, bottom=20mm}
|
||||
|
||||
%\RequirePackage{arev}
|
||||
\RequirePackage{kpfonts}
|
||||
\renewcommand*\familydefault{\sfdefault}
|
||||
\RequirePackage[T1]{fontenc}
|
||||
|
||||
% commandes personnelles
|
||||
|
||||
% Les en-tête et les pieds de pages
|
||||
\RequirePackage{fancyhdr}
|
||||
\pagestyle{fancy}
|
||||
\fancyhf{}
|
||||
|
||||
\renewcommand{\headrulewidth}{0pt}
|
||||
%\setlength{\headheight}{15.2pt}
|
||||
\setlength{\headsep}{5pt}
|
||||
|
||||
\newcommand{\op@boiteentete}{\makebox[0pt][l]{\hspace*{-3ex}%
|
||||
\color{bgentete}\rule[-0.8ex]{\linewidth+6ex}{3ex}%
|
||||
}}
|
||||
|
||||
\fancyhead[L]{%
|
||||
\op@boiteentete%
|
||||
\small\op@typedoc \op@titre%
|
||||
}
|
||||
\fancyhead[R]{\small\scshape\op@entete}
|
||||
\fancyfoot[R]{\color{footer}\thepage}
|
||||
\fancyfoot[L]{\color{footer}\scriptsize\op@classe{} -- \op@annee}
|
||||
|
||||
\fancypagestyle{plain}{%
|
||||
\fancyhf{}
|
||||
\fancyfoot[R]{\color{footer}\thepage}
|
||||
\fancyfoot[L]{\color{footer}\scriptsize\op@classe{} -- \op@annee}
|
||||
% \fancyfoot[R]{\thepage}
|
||||
% \fancyfoot[L]{\scriptsize\op@classe{} -- \op@annee}
|
||||
}
|
||||
|
||||
|
||||
% Description du Cours
|
||||
\newcommand{\op@entete}{}
|
||||
\newcommand{\op@soustitre}{}
|
||||
\newcommand{\op@classe}{}
|
||||
\newcommand{\op@typedoc}{}
|
||||
\newcommand{\op@typedoctmp}{}
|
||||
\newcommand{\op@titre}{}
|
||||
|
||||
\newcommand{\classe}[1]{\renewcommand{\op@classe}{#1}}
|
||||
\newcommand{\titre}[1]{\renewcommand{\op@titre}{#1}}
|
||||
|
||||
\renewcommand{\op@typedoc}{Cours: }
|
||||
\renewcommand{\op@soustitre}{\op@classe{} -- \@date{}}%
|
||||
\renewcommand{\op@entete}{\@date}
|
||||
|
||||
|
||||
% Redéfinition de maketitle pour ne plus avoir la date
|
||||
\renewcommand{\maketitle}{%
|
||||
\thispagestyle{plain}
|
||||
\noindent{\huge \color{title}\bfseries \op@typedoc \op@titre}\par
|
||||
\noindent{\color{line}\rule{\linewidth}{1ex}}\par
|
||||
\noindent{\color{subtitle}\bfseries \op@soustitre}\par
|
||||
\vspace{2.5\baselineskip}
|
||||
}
|
10
tools/style/classDS.cls
Normal file
@@ -0,0 +1,10 @@
|
||||
\NeedsTeXFormat{LaTeX2e}
|
||||
|
||||
\ProvidesClass{classDS}
|
||||
|
||||
% classe de base
|
||||
|
||||
\LoadClassWithOptions{/media/documents/Cours/Prof/Enseignements/2016-2017/tools/style/remixExam}
|
||||
|
||||
|
||||
|
10
tools/style/classExamen.cls
Normal file
@@ -0,0 +1,10 @@
|
||||
\NeedsTeXFormat{LaTeX2e}
|
||||
|
||||
\ProvidesClass{classExamen}
|
||||
|
||||
% classe de base
|
||||
|
||||
\LoadClassWithOptions{/media/documents/Cours/Prof/Enseignements/2016-2017/tools/style/remixExam}
|
||||
|
||||
\renewcommand{\baselinestretch}{1.5} % interligne
|
||||
|
34
tools/style/classExo.cls
Normal file
@@ -0,0 +1,34 @@
|
||||
\NeedsTeXFormat{LaTeX2e}
|
||||
|
||||
\ProvidesClass{classExo}
|
||||
|
||||
% classe de base
|
||||
|
||||
\LoadClassWithOptions{/media/documents/Cours/Prof/Enseignements/2016-2017/tools/style/remixExam}
|
||||
|
||||
% extensions
|
||||
|
||||
\RequirePackage{/media/documents/Cours/Prof/Enseignements/2016-2017/tools/style/base}
|
||||
\RequirePackage{/media/documents/Cours/Prof/Enseignements/2016-2017/tools/style/theme}
|
||||
|
||||
\RequirePackage{geometry}
|
||||
%\geometry{landscape}
|
||||
\geometry{left=15mm,right=15mm, bottom= 15mm, top=15mm}
|
||||
|
||||
\firstpageheader{\op@boiteentete\small\scshape\op@entete}{}{\small\op@typedoc \op@titre} % Header de la première page
|
||||
|
||||
|
||||
%\setlength{\oddsidemargin}{0in} % default=0in
|
||||
%\setlength{\textwidth}{9in} % default=9in
|
||||
|
||||
\setlength{\columnsep}{30pt} % default=10pt
|
||||
\setlength{\columnseprule}{1pt} % default=0pt (no line)
|
||||
|
||||
%\setlength{\textheight}{5.85in} % default=5.15in
|
||||
%\setlength{\topmargin}{-0.40in} % default=0.20in
|
||||
%\setlength{\headsep}{0.35in} % default=0.35in
|
||||
|
||||
|
||||
\renewcommand{\op@entete}{\op@classe}
|
||||
|
||||
|
20
tools/style/classPres.cls
Executable file
@@ -0,0 +1,20 @@
|
||||
\NeedsTeXFormat{LaTeX2e}
|
||||
|
||||
\ProvidesClass{classDS}
|
||||
|
||||
%Classe de base - Beamer
|
||||
\pdfminorversion=4
|
||||
\LoadClassWithOptions{beamer}
|
||||
|
||||
\usetheme{Singapore}
|
||||
\usepackage[defaultsans]{droidsans}
|
||||
\usepackage[T1]{fontenc}
|
||||
|
||||
% extensions
|
||||
|
||||
\RequirePackage{/media/documents/Cours/Prof/Enseignements/2016-2017/tools/style/base}
|
||||
\RequirePackage{/media/documents/Cours/Prof/Enseignements/2016-2017/tools/style/theme}
|
||||
|
||||
|
||||
% Les tableaux
|
||||
\renewcommand{\arraystretch}{1.5}
|
BIN
tools/style/icons/abstract-001.png
Normal file
After Width: | Height: | Size: 4.8 KiB |
BIN
tools/style/icons/abstract-002.png
Normal file
After Width: | Height: | Size: 5.6 KiB |
BIN
tools/style/icons/abstract-003.png
Normal file
After Width: | Height: | Size: 5.3 KiB |
BIN
tools/style/icons/abstract-004.png
Normal file
After Width: | Height: | Size: 4.0 KiB |
BIN
tools/style/icons/abstract-005.png
Normal file
After Width: | Height: | Size: 4.5 KiB |
BIN
tools/style/icons/abstract-006.png
Normal file
After Width: | Height: | Size: 5.1 KiB |
BIN
tools/style/icons/abstract-007.png
Normal file
After Width: | Height: | Size: 4.9 KiB |
BIN
tools/style/icons/abstract-008.png
Normal file
After Width: | Height: | Size: 4.6 KiB |
BIN
tools/style/icons/abstract-009.png
Normal file
After Width: | Height: | Size: 3.1 KiB |
BIN
tools/style/icons/abstract-010.png
Normal file
After Width: | Height: | Size: 4.9 KiB |
BIN
tools/style/icons/abstract-011.png
Normal file
After Width: | Height: | Size: 6.7 KiB |
BIN
tools/style/icons/abstract-012.png
Normal file
After Width: | Height: | Size: 2.7 KiB |
BIN
tools/style/icons/abstract-013.png
Normal file
After Width: | Height: | Size: 7.2 KiB |
BIN
tools/style/icons/abstract-014.png
Normal file
After Width: | Height: | Size: 4.3 KiB |
BIN
tools/style/icons/abstract-015.png
Normal file
After Width: | Height: | Size: 4.7 KiB |
BIN
tools/style/icons/abstract-016.png
Normal file
After Width: | Height: | Size: 3.9 KiB |
BIN
tools/style/icons/abstract-017.png
Normal file
After Width: | Height: | Size: 2.5 KiB |
BIN
tools/style/icons/abstract-018.png
Normal file
After Width: | Height: | Size: 3.8 KiB |
BIN
tools/style/icons/abstract-019.png
Normal file
After Width: | Height: | Size: 5.4 KiB |
BIN
tools/style/icons/abstract-020.png
Normal file
After Width: | Height: | Size: 5.0 KiB |
BIN
tools/style/icons/abstract-021.png
Normal file
After Width: | Height: | Size: 4.8 KiB |
BIN
tools/style/icons/abstract-022.png
Normal file
After Width: | Height: | Size: 3.4 KiB |
BIN
tools/style/icons/abstract-023.png
Normal file
After Width: | Height: | Size: 4.2 KiB |
BIN
tools/style/icons/abstract-024.png
Normal file
After Width: | Height: | Size: 6.4 KiB |
BIN
tools/style/icons/abstract-025.png
Normal file
After Width: | Height: | Size: 4.0 KiB |
BIN
tools/style/icons/abstract-026.png
Normal file
After Width: | Height: | Size: 5.2 KiB |
BIN
tools/style/icons/abstract-027.png
Normal file
After Width: | Height: | Size: 3.1 KiB |
BIN
tools/style/icons/abstract-028.png
Normal file
After Width: | Height: | Size: 3.8 KiB |
BIN
tools/style/icons/abstract-029.png
Normal file
After Width: | Height: | Size: 3.4 KiB |
BIN
tools/style/icons/abstract-030.png
Normal file
After Width: | Height: | Size: 2.6 KiB |
BIN
tools/style/icons/abstract-031.png
Normal file
After Width: | Height: | Size: 2.7 KiB |
BIN
tools/style/icons/abstract-032.png
Normal file
After Width: | Height: | Size: 4.4 KiB |
BIN
tools/style/icons/abstract-033.png
Normal file
After Width: | Height: | Size: 4.6 KiB |
BIN
tools/style/icons/abstract-034.png
Normal file
After Width: | Height: | Size: 5.1 KiB |
BIN
tools/style/icons/abstract-035.png
Normal file
After Width: | Height: | Size: 4.3 KiB |
BIN
tools/style/icons/abstract-036.png
Normal file
After Width: | Height: | Size: 5.6 KiB |
BIN
tools/style/icons/abstract-037.png
Normal file
After Width: | Height: | Size: 5.0 KiB |
BIN
tools/style/icons/abstract-038.png
Normal file
After Width: | Height: | Size: 4.0 KiB |
BIN
tools/style/icons/abstract-039.png
Normal file
After Width: | Height: | Size: 4.4 KiB |
BIN
tools/style/icons/abstract-040.png
Normal file
After Width: | Height: | Size: 4.5 KiB |
BIN
tools/style/icons/abstract-041.png
Normal file
After Width: | Height: | Size: 4.7 KiB |
BIN
tools/style/icons/abstract-042.png
Normal file
After Width: | Height: | Size: 1.1 KiB |
BIN
tools/style/icons/abstract-043.png
Normal file
After Width: | Height: | Size: 4.5 KiB |
BIN
tools/style/icons/abstract-044.png
Normal file
After Width: | Height: | Size: 4.2 KiB |
BIN
tools/style/icons/abstract-045.png
Normal file
After Width: | Height: | Size: 3.4 KiB |
BIN
tools/style/icons/abstract-046.png
Normal file
After Width: | Height: | Size: 3.8 KiB |
BIN
tools/style/icons/abstract-047.png
Normal file
After Width: | Height: | Size: 5.2 KiB |
BIN
tools/style/icons/abstract-048.png
Normal file
After Width: | Height: | Size: 4.5 KiB |
BIN
tools/style/icons/abstract-049.png
Normal file
After Width: | Height: | Size: 5.6 KiB |
BIN
tools/style/icons/abstract-050.png
Normal file
After Width: | Height: | Size: 1.2 KiB |
BIN
tools/style/icons/abstract-051.png
Normal file
After Width: | Height: | Size: 2.8 KiB |
BIN
tools/style/icons/abstract-052.png
Normal file
After Width: | Height: | Size: 5.2 KiB |
BIN
tools/style/icons/abstract-053.png
Normal file
After Width: | Height: | Size: 4.9 KiB |
BIN
tools/style/icons/abstract-054.png
Normal file
After Width: | Height: | Size: 3.7 KiB |
BIN
tools/style/icons/abstract-055.png
Normal file
After Width: | Height: | Size: 2.8 KiB |
BIN
tools/style/icons/abstract-056.png
Normal file
After Width: | Height: | Size: 4.4 KiB |
BIN
tools/style/icons/abstract-057.png
Normal file
After Width: | Height: | Size: 4.0 KiB |
BIN
tools/style/icons/abstract-058.png
Normal file
After Width: | Height: | Size: 1.2 KiB |
BIN
tools/style/icons/abstract-059.png
Normal file
After Width: | Height: | Size: 3.5 KiB |
BIN
tools/style/icons/abstract-060.png
Normal file
After Width: | Height: | Size: 3.3 KiB |
BIN
tools/style/icons/abstract-061.png
Normal file
After Width: | Height: | Size: 5.4 KiB |
BIN
tools/style/icons/abstract-062.png
Normal file
After Width: | Height: | Size: 3.5 KiB |
BIN
tools/style/icons/abstract-063.png
Normal file
After Width: | Height: | Size: 4.6 KiB |
BIN
tools/style/icons/abstract-064.png
Normal file
After Width: | Height: | Size: 4.0 KiB |
BIN
tools/style/icons/abstract-065.png
Normal file
After Width: | Height: | Size: 3.8 KiB |
BIN
tools/style/icons/abstract-066.png
Normal file
After Width: | Height: | Size: 5.7 KiB |
BIN
tools/style/icons/abstract-067.png
Normal file
After Width: | Height: | Size: 4.0 KiB |
BIN
tools/style/icons/abstract-068.png
Normal file
After Width: | Height: | Size: 2.8 KiB |
BIN
tools/style/icons/abstract-069.png
Normal file
After Width: | Height: | Size: 5.1 KiB |
BIN
tools/style/icons/abstract-070.png
Normal file
After Width: | Height: | Size: 6.6 KiB |
BIN
tools/style/icons/abstract-071.png
Normal file
After Width: | Height: | Size: 3.8 KiB |
BIN
tools/style/icons/abstract-072.png
Normal file
After Width: | Height: | Size: 3.2 KiB |
BIN
tools/style/icons/abstract-073.png
Normal file
After Width: | Height: | Size: 4.4 KiB |
BIN
tools/style/icons/abstract-074.png
Normal file
After Width: | Height: | Size: 5.2 KiB |
BIN
tools/style/icons/abstract-075.png
Normal file
After Width: | Height: | Size: 4.1 KiB |
BIN
tools/style/icons/abstract-076.png
Normal file
After Width: | Height: | Size: 5.2 KiB |
BIN
tools/style/icons/abstract-077.png
Normal file
After Width: | Height: | Size: 5.3 KiB |
BIN
tools/style/icons/abstract-078.png
Normal file
After Width: | Height: | Size: 5.1 KiB |
BIN
tools/style/icons/abstract-079.png
Normal file
After Width: | Height: | Size: 4.5 KiB |
BIN
tools/style/icons/abstract-080.png
Normal file
After Width: | Height: | Size: 1.9 KiB |
BIN
tools/style/icons/abstract-081.png
Normal file
After Width: | Height: | Size: 3.7 KiB |
BIN
tools/style/icons/abstract-082.png
Normal file
After Width: | Height: | Size: 5.4 KiB |
BIN
tools/style/icons/abstract-083.png
Normal file
After Width: | Height: | Size: 5.7 KiB |
BIN
tools/style/icons/abstract-084.png
Normal file
After Width: | Height: | Size: 3.3 KiB |
BIN
tools/style/icons/abstract-085.png
Normal file
After Width: | Height: | Size: 5.8 KiB |
BIN
tools/style/icons/abstract-086.png
Normal file
After Width: | Height: | Size: 3.1 KiB |
BIN
tools/style/icons/abstract-087.png
Normal file
After Width: | Height: | Size: 2.0 KiB |
BIN
tools/style/icons/abstract-088.png
Normal file
After Width: | Height: | Size: 4.9 KiB |
BIN
tools/style/icons/abstract-089.png
Normal file
After Width: | Height: | Size: 4.9 KiB |
BIN
tools/style/icons/abstract-090.png
Normal file
After Width: | Height: | Size: 3.8 KiB |
BIN
tools/style/icons/abstract-091.png
Normal file
After Width: | Height: | Size: 4.9 KiB |
BIN
tools/style/icons/abstract-092.png
Normal file
After Width: | Height: | Size: 3.2 KiB |