-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathmain.tex
More file actions
54 lines (42 loc) · 1.97 KB
/
main.tex
File metadata and controls
54 lines (42 loc) · 1.97 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Nom : TeXIEDP8
% Rôle : Ce projet est un modèle de document LaTeX utilisable pour les
% devoirs de l'IED de l'Université Paris 8.
% Auteur : Martos Alexandre
% E-mail : contact@amartos.fr
% Version : 0.1
% Licence : GPLv3
% Compilation :
% mkdir -p build
% xelatex -output-directory=build --jobname="main" main.tex
% biber build/main
% xelatex -output-directory=build --jobname="main" main.tex
% xelatex -output-directory=build --jobname="main" main.tex
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\documentclass[12pt, a4paper]{book}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% preamble
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\input{src/requirements.tex} % package and their options
\input{src/bibliography.tex} % bibliography settings
\input{src/environments.tex} % custom environments
\input{src/codeblocks.tex} % code blocks styles
\input{src/commands.tex} % custom commands
% FILE CONTENT TO ADAPT
% this file needs to be added before src/mdformatting.tex
\input{metadata.tex} % author, title, code style definition
\input{src/mdformatting.tex} % author, title, etc, metadata formatting
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% document
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\begin{document}
\input{src/titlepage.tex} % custom titlepage
\input{src/precontent.tex} % pagestyles, numbering, etc
\input{src/toc.tex} % toc printing and options
% This file is automatically generated using the content of the document/
% folder.
\input{src/content.tex}
% FILE CONTENT TO ADAPT
\input{annexes.tex}
\printbibliography[heading=bibintoc] % chktex 1
\end{document}