46 lines
780 B
Plaintext
46 lines
780 B
Plaintext
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||
|
% Course of {{ course_name }}
|
||
|
%
|
||
|
% Author: Samuel ORTION <samuel@ortion.fr>
|
||
|
% Version: 0.0.1
|
||
|
% Date: 2023
|
||
|
% Licence: CC-By-SA 4.0+ International
|
||
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||
|
|
||
|
\documentclass[
|
||
|
a4paper,
|
||
|
10pt,
|
||
|
fleqn,
|
||
|
oneside
|
||
|
]{talpa}
|
||
|
|
||
|
\input{colors.tex}
|
||
|
\input{meta.tex}
|
||
|
\input{definitions.tex}
|
||
|
|
||
|
\hypersetup{
|
||
|
pdftitle={
|
||
|
Course - {{ course_name }}
|
||
|
},
|
||
|
pdfauthor={
|
||
|
{{ student_name }}
|
||
|
},
|
||
|
pdfsubject={},
|
||
|
pdfkeywords={},
|
||
|
pdfcreator={LaTeX}
|
||
|
}
|
||
|
|
||
|
% \addbibressource{bibliography.bib}
|
||
|
|
||
|
\makeindex
|
||
|
\begin{document}
|
||
|
|
||
|
\tableofcontents
|
||
|
|
||
|
% \input{content/introduction.tex}
|
||
|
|
||
|
\input{content/chapters/include.tex}
|
||
|
|
||
|
% \input{content/conclusion.tex}
|
||
|
|
||
|
\end{document}
|