notebook/main.tex
2024-08-05 00:31:10 +02:00

97 lines
4.4 KiB
TeX

\documentclass{report}
\usepackage[margin=1.5cm]{geometry} % Defines the margins for the whole document.
\usepackage[utf8]{inputenc} % Sets the font & encoding
%\usepackage{helvet} % Add the Helvet font
\renewcommand{\familydefault}{\rmdefault} % Change default font to serif font family (default)
%\renewcommand{\familydefault}{\ttdefault} % Change default font to monospace font family
%\renewcommand{\familydefault}{\sfdefault} % Change default font to sans serif font family
\usepackage[T1]{fontenc} % Set the font (output) encoding
\usepackage[french]{packages/language_selector} % Allow to the language the document is written to ([french], english)
%\usepackage[autolanguage]{numprint} % for the \nombre command
\usepackage{hyphenat} % Hyphenation rules
\hyphenation{mate-mática recu-perar}
\usepackage{setspace} % Sets the line spacing.
\setstretch{1.0}
\usepackage{multibib} % Allow multiple separates bibliography citations
\langnewcites{annexes}{Annexes}{Annexes}
\langnewcites{references}{Références}{References}
%\usepackage{lipsum} % Command to generate temporary dummy text
\usepackage[ruled,vlined,linesnumbered]{algorithm2e} % Add the algorithm environnement
\usepackage[codedark]{packages/themes} % Include many colours themes ([default], codedark or dracula)
\pagecolor{th_colour_bg}
\color{th_colour_fg}
\usepackage{amsmath} % Provides command to typeset matrices with different delimiters
\usepackage{listings} % Add an environnement to highlight code
\usepackage{xargs} % Allow multiple optional parameters parsing
\usepackage{mdframed} % Fancy rectangles
\mdfsetup{linecolor = th_colour_fg, innerlinecolor = th_colour_fg,%
middlelinecolor = th_colour_fg, outerlinecolor = th_colour_fg,%
backgroundcolor = th_colour_bg, fontcolor = th_colour_fg}
\usepackage{packages/macros} % Customs macros
\usepackage{graphicx}
\usepackage{makeidx}[intoc] % Make a word index
\makeindex
\langtitle{Notebook ultime}{Ultimate Notebook}
\author{Pierre Saunders}
%\date{}
\begin{document}
\maketitle
%\renewcommand{\contentsname}{Sommaire}
\tableofcontents
\langchapter{Préambule}{Stuffings}
%TODO Complete chapter
\section{Motivations}
%TODO Complete section
Ce notebook est destinée à acueillir mes maigres connaissances manière digeste et mais intrinsecement imcomplet, imprècis voir éronné. A vous lecteur qui découvrent ce notebook, accueiller le davantage comme une liste de connaissances que comme un manuel scolaire.
\langsection{Remerciements}{Thankings}
%TODO Complete section
Je remercie Adel Medjhoub pour les nombreuses conversations qui ont mürit mes visions du monde.
Je remercie Damien Graux de m'avoir introduit le monde de la recherche ainsi que la language LaTeX sur laquelle ce notebook est rédiger.
De de manière honteusement démagogique, je vous remercie tout lecteurs de ce notebook.
\input{contents/latex}
\input{contents/computer_science}
\input{contents/logic}
\input{contents/set_theory}
\input{contents/number_theory}
\input{contents/algebra}
\input{contents/trigonometry}
\input{contents/differentiability}
\input{contents/differential_equations}
\input{contents/measure_theory}
\input{contents/topology}
\input{contents/category_theory}
\input{contents/GaussianParadigm}
\input{contents/music_theory}
\input{contents/philosophy}
\input{contents/linguistic}
\input{contents/definitions}
\addcontentsline{toc}{chapter}{Références}
\begingroup
\bibliographystylereferences{IEEEtran}
\bibliographyreferences{references/references}
\endgroup
\addcontentsline{toc}{chapter}{Annexes}
\begingroup
\bibliographystyleannexes{IEEEtran}
\bibliographyannexes{references/annexes}
\endgroup
\printindex
\end{document}