sequence-algorithms/main.tex

87 lines
1.6 KiB
TeX
Raw Normal View History

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
2023-12-05 20:30:40 +01:00
]{scrbook}
\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={
Course - Sequence algorithms
},
pdfauthor={
Samuel Ortion
},
pdfsubject={},
pdfkeywords={},
pdfcreator={LaTeX}
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}
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}
2023-12-05 20:37:44 +01:00
2024-03-05 12:35:55 +01:00
\input{content/chapters/include}
2023-12-05 20:37:44 +01:00
2023-12-05 20:30:40 +01:00
2023-12-05 20:37:44 +01:00
% \input{content/conclusion}
2023-12-05 20:30:40 +01:00
\end{document}