88 lines
2.9 KiB
TeX
88 lines
2.9 KiB
TeX
\documentclass[a4paper,12pt]{article}
|
|
%\documentclass[a4paper,10pt]{scrartcl}
|
|
|
|
\usepackage{xltxtra}
|
|
\usepackage{fontspec}
|
|
\usepackage[french]{babel}
|
|
\usepackage{listings}
|
|
% \usepackage{float}
|
|
% \usepackage[subsection]{placeins}
|
|
|
|
%\setromanfont[Mapping=tex-text]{Linux Libertine O}
|
|
\setmainfont[Mapping=tex-text]{Cantarell}
|
|
% \setmonofont[Mapping=tex-text]{DejaVu Sans Mono}
|
|
\newenvironment{citationFR}{\begin{quotation}\og}{\fg\end{quotation}}
|
|
\newcommand{\guillemets}[1]{\og #1\fg{}} % [1]: nbr arg
|
|
|
|
\lstset{
|
|
language=C++, % Code langugage
|
|
basicstyle=\ttfamily, % Code font, Examples: \footnotesize, \ttfamily
|
|
% keywordstyle=\color{OliveGreen}, % Keywords font ('*' = uppercase)
|
|
% commentstyle=\color{gray}, % Comments font
|
|
% numbers=left, % Line nums position
|
|
% numberstyle=\tiny, % Line-numbers fonts
|
|
% stepnumber=1, % Step between two line-numbers
|
|
% numbersep=5pt, % How far are line-numbers from code
|
|
% backgroundcolor=\color{lightlightgray}, % Choose background color
|
|
% frame=none, % A frame around the code
|
|
% tabsize=2, % Default tab size
|
|
captionpos=b, % Caption-position = bottom
|
|
% breaklines=true, % Automatic line breaking?
|
|
% breakatwhitespace=false, % Automatic breaks only at whitespace?
|
|
% showspaces=false, % Dont make spaces visible
|
|
% showtabs=false, % Dont make tabls visible
|
|
% columns=flexible, % Column format
|
|
% morekeywords={__global__, __device__}, % CUDA specific keywords
|
|
}
|
|
|
|
\title{Rapport ERDI}
|
|
\author{Cyril Colin \\ Voisin Dylan \\ \\
|
|
Master 1 Informatique\\
|
|
Université d'Aix-Marseille}
|
|
\date{Décembre 2019}
|
|
|
|
\begin{document}
|
|
\maketitle
|
|
\includegraphics[width=0.9\linewidth]{Images/amu_logo.png}
|
|
|
|
\newpage
|
|
\tableofcontents
|
|
\input{Parties/résumé.tex}
|
|
\newpage
|
|
\section*{Introduction}
|
|
\input{Parties/intro.tex}
|
|
|
|
\section{Bruit de Perlin}
|
|
\input{Parties/chap1_intro.tex}
|
|
\subsection{Principe}
|
|
\input{Parties/chap1_1.tex}
|
|
\subsection{Applications}
|
|
\input{Parties/chap1_2.tex}
|
|
% \subsection{Limitations}
|
|
% \input{Parties/chap1_3.tex}
|
|
|
|
\section{Bruit de Gabor}
|
|
\input{Parties/chap2_intro.tex}
|
|
\subsection{Principe}
|
|
\input{Parties/chap2_1.tex}
|
|
\subsection{Nouvelles applications}
|
|
\input{Parties/chap2_2.tex}
|
|
|
|
\section{Phasor noise}
|
|
\input{Parties/chap3_intro.tex}
|
|
\subsection{Différences avec Gabor}
|
|
\input{Parties/chap3_1.tex}
|
|
\subsection{Explications et intérêts}
|
|
\input{Parties/chap3_2.tex}
|
|
\subsection{Limitations}
|
|
\input{Parties/chap3_3.tex}
|
|
|
|
\section{Conclusion}
|
|
\input{Parties/conclusion.tex}
|
|
|
|
% \section{Résumé}
|
|
% \input{Parties/résumé.tex}
|
|
|
|
\section{Bibliographie}
|
|
\end{document}
|