cm.template/main.tex.jinja

74 lines
1.0 KiB
Plaintext
Raw Normal View History

2023-05-29 11:28:29 +02:00
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2023-08-26 11:48:50 +02:00
% Course - {{ course_name }} -- {{ cursus }} -- {{ semester }}
2023-05-29 11:28:29 +02:00
%
2023-08-26 11:48:50 +02:00
% Author: {{ author_name }} <{{ author_email }}>
% Version: 0.1.0
2023-05-29 11:28:29 +02:00
% Date: 2023
2023-08-26 11:48:50 +02:00
% License: CC-By-SA 4.0+ International
2023-05-29 11:28:29 +02:00
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\documentclass[
a4paper,
10pt,
fleqn,
oneside
2023-08-26 11:48:50 +02:00
]{musculus/mus}
2023-05-29 11:28:29 +02:00
2023-08-26 11:48:50 +02:00
\title{
{{ course_name }}
}
\author{
{{ author_name }}
}
\cursus{
{{ cursus }}
}
\semester{
{{ semester }}
}
\teacher{
{{ teacher_name }}
}
\input{definitions}
2023-05-29 11:28:29 +02:00
\hypersetup{
2023-08-26 11:48:50 +02:00
pdftitle={
Course - {{ course_name }}
},
pdfauthor={
{{ author_name }}
2023-05-29 11:28:29 +02:00
},
2023-08-26 11:48:50 +02:00
pdfsubject={},
pdfkeywords={},
pdfcreator={LaTeX}
2023-05-29 11:28:29 +02:00
}
2023-08-26 11:48:50 +02:00
\addbibresource{references}
\usepackage[
type={CC},
modifier={by-sa},
version={4.0},
]{doclicense}
2023-05-29 11:28:29 +02:00
2023-08-26 11:48:50 +02:00
\input{preamble}
\input{glossary}
\input{definitions}
\makeindex%
\makeglossary%
2023-05-29 11:28:29 +02:00
\begin{document}
\tableofcontents
2023-08-26 11:48:50 +02:00
\doclicenseThis%
\input{content/introduction}
2023-05-29 11:28:29 +02:00
2023-08-26 11:48:50 +02:00
\input{content/chapters/include}
2023-05-29 11:28:29 +02:00
2023-08-26 11:48:50 +02:00
\input{content/conclusion}
2023-05-29 11:28:29 +02:00
2023-08-26 11:48:50 +02:00
\end{document}