2023-12-05 20:30:40 +01:00
|
|
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
% Course -- Sequence algorithms --- GENIOMHE --- M1 - T3
|
|
|
|
%
|
|
|
|
% Author: Samuel Ortion <samuel.ortion@etud.univ-evry.fr>
|
|
|
|
% Version: 0.1.0
|
|
|
|
% Date: 2023
|
|
|
|
% License: CC-By-SA 4.0+ International
|
|
|
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
|
|
|
|
\documentclass[
|
2024-03-05 12:35:55 +01:00
|
|
|
a4paper,
|
|
|
|
fontsize=10pt,
|
|
|
|
fleqn,
|
|
|
|
oneside
|
2024-03-19 13:11:18 +01:00
|
|
|
]{scrbook}
|
2023-12-05 20:30:40 +01:00
|
|
|
|
2024-03-19 13:11:18 +01:00
|
|
|
|
2023-12-05 20:30:40 +01:00
|
|
|
\usepackage{mus}
|
|
|
|
|
2024-03-05 12:35:55 +01:00
|
|
|
\RequirePackage{algorithm}
|
|
|
|
\RequirePackage{algorithmicx}
|
|
|
|
\RequirePackage[noEnd=false]{algpseudocodex}
|
|
|
|
\newcommand{\algorithmautorefname}{Algorithm} % Allow autoref.
|
|
|
|
% Define macros to typeset boolean in pseudocode environments
|
|
|
|
\algnewcommand{\True}{\textbf{\texttt{true}}}
|
|
|
|
\algnewcommand{\False}{\textbf{\texttt{false}}}
|
|
|
|
\algnewcommand{\NIL}{\textbf{\texttt{NIL}}}
|
|
|
|
\algnewcommand{\NULL}{\textbf{\texttt{null}}}
|
|
|
|
|
|
|
|
|
2023-12-05 20:30:40 +01:00
|
|
|
\titlehead{GENIOMHE}
|
2023-12-05 20:37:44 +01:00
|
|
|
\title{Sequence \newline{}algorithms}
|
2023-12-05 20:30:40 +01:00
|
|
|
\author{Samuel Ortion}
|
|
|
|
\teacher{Fariza Tahi}
|
|
|
|
\cursus{GENIOMHE}
|
|
|
|
\university{Université Paris-Saclay, Université d'Évry val d'Essonne}
|
|
|
|
\semester{M1 - T3}
|
2024-03-05 12:35:55 +01:00
|
|
|
\date{2024}
|
2023-12-05 20:30:40 +01:00
|
|
|
|
|
|
|
|
|
|
|
\hypersetup{
|
2024-03-05 12:35:55 +01:00
|
|
|
pdftitle={
|
2024-03-19 13:11:18 +01:00
|
|
|
Course - Sequence algorithms
|
2024-03-05 12:35:55 +01:00
|
|
|
},
|
|
|
|
pdfauthor={
|
2024-03-19 13:11:18 +01:00
|
|
|
Samuel Ortion
|
|
|
|
},
|
2024-03-05 12:35:55 +01:00
|
|
|
pdfsubject={},
|
|
|
|
pdfkeywords={},
|
|
|
|
pdfcreator={LaTeX}
|
2023-12-05 20:30:40 +01:00
|
|
|
}
|
2024-03-19 13:11:18 +01:00
|
|
|
|
2023-12-05 20:30:40 +01:00
|
|
|
\addbibresource{references}
|
|
|
|
|
|
|
|
\usepackage[
|
2024-03-05 12:35:55 +01:00
|
|
|
type={CC},
|
|
|
|
modifier={by-sa},
|
|
|
|
version={4.0},
|
2023-12-05 20:30:40 +01:00
|
|
|
]{doclicense}
|
|
|
|
|
2024-03-05 12:35:55 +01:00
|
|
|
\input{definitions}
|
2023-12-05 20:30:40 +01:00
|
|
|
\input{preamble}
|
|
|
|
\input{glossary}
|
|
|
|
|
2023-12-05 20:37:44 +01:00
|
|
|
\definecolor{clementine}{HTML}{dfa000}
|
|
|
|
\colorlet{primary}{clementine}
|
|
|
|
|
2024-03-19 13:11:18 +01:00
|
|
|
% \includeonly{content/chapters/part1/1}
|
2023-12-05 20:30:40 +01:00
|
|
|
\makeindex%
|
|
|
|
\makeglossary%
|
|
|
|
\begin{document}
|
|
|
|
|
2023-12-05 20:37:44 +01:00
|
|
|
\maketitlefullpage%
|
2023-12-05 20:30:40 +01:00
|
|
|
|
|
|
|
\tableofcontents
|
|
|
|
|
2024-03-05 12:35:55 +01:00
|
|
|
% \doclicenseThis%
|
|
|
|
|
|
|
|
\newpage
|
2023-12-05 20:30:40 +01:00
|
|
|
|
2024-03-05 12:35:55 +01:00
|
|
|
% \input{content ./introduction}
|
|
|
|
\input{content/chapters/include}
|
2023-12-05 20:37:44 +01:00
|
|
|
% \input{content/conclusion}
|
2023-12-05 20:30:40 +01:00
|
|
|
|
|
|
|
\end{document}
|