2019-01-15 15:56:28 +01:00
|
|
|
\documentclass{../../cours}
|
|
|
|
\usepackage{../../raccourcis}
|
|
|
|
% Mise en page
|
|
|
|
\title{Notes de Cours}
|
|
|
|
\author{Pierre-Antoine Comby}
|
|
|
|
\teacher{Michel Kieffer}
|
|
|
|
\module{455}
|
|
|
|
\usepackage{listings}
|
|
|
|
\definecolor{mygreen}{RGB}{28,172,0} % color values Red, Green, Blue
|
|
|
|
\definecolor{mylilas}{RGB}{170,55,241}
|
|
|
|
\begin{document}
|
|
|
|
\lstset{language=Matlab, %
|
|
|
|
% basicstyle=\color{red},
|
|
|
|
breaklines=true,%
|
|
|
|
morekeywords={matlab2tikz},
|
|
|
|
keywordstyle=\color{blue},%
|
|
|
|
morekeywords=[2]{1}, keywordstyle=[2]{\color{black}},
|
|
|
|
identifierstyle=\color{black},%
|
|
|
|
stringstyle=\color{mylilas},
|
|
|
|
commentstyle=\color{mygreen},%
|
|
|
|
showstringspaces=false,%without this there will be a symbol in the places where there is a space
|
|
|
|
numbers=left,%
|
|
|
|
numberstyle={\tiny \color{black}},% size of the numbers
|
|
|
|
numbersep=9pt, % this defines how far the numbers are from the text
|
|
|
|
emph=[1]{for,end,break},emphstyle=[1]\color{red}, %some words to emphasise
|
|
|
|
%emph=[2]{word1,word2}, emphstyle=[2]{style},
|
|
|
|
}
|
|
|
|
\maketitle
|
|
|
|
\tableofcontents
|
|
|
|
\chapter{Rappel de probabilité}
|
2019-01-17 20:12:37 +01:00
|
|
|
\subfile{chap0_MAN.tex}
|
2019-01-15 15:56:28 +01:00
|
|
|
\chapter{Introduction - Motivation}
|
|
|
|
\subfile{chap0.tex}
|
|
|
|
\chapter{Codage entropique (sans pertes)}
|
|
|
|
\subfile{chap1.tex}
|
|
|
|
\chapter{Quantification}
|
|
|
|
\subfile{chap2.tex}
|
|
|
|
\chapter{Codage prédictif}
|
|
|
|
\subfile{chap3.tex}
|
|
|
|
\end{document}
|