-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.tex
87 lines (61 loc) · 1.9 KB
/
main.tex
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
\documentclass{TREX}
\usepackage{minted}
\usepackage{longtable}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%% %%%%
%%%% IMPORTANT %%%%
%%%% %%%%
%%%% The content of the report is located in the 05-content.tex file %%%%
%%%% %%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%------
% TODO : Fill in this information
% Work package number
\newcommand{\WorkPackage}{1}
% Work package title
\newcommand{\WorkPackageTitle}{Standard API for QMC kernels and implementation}
% Deliverable number
\newcommand{\DelID}{3}
% Title of the Deliverable
\newcommand{\DelTitle}{Second iteration of Report on software design and implementation}
% Due date
\newcommand{\DueDate}{M26 -- 31-11-2022 (from GA)}
% Actual submission date
\newcommand{\SubDate}{30-11-2022}
% Main author (Leader)
\newcommand{\LeadAuthor}{Anthony Scemama (\ac{CNRS})}
% Contributing authors
\newcommand{\Contributors}{}
% Reviewers
\newcommand{\Reviewers}{Pablo Oliveira (\ac{UVSQ}), Ali Alavi (\ac{MPG})}
% Deliverable version
\newcommand{\DelVersion}{1.0}
% Draft or final version?
\newcommand{\DraftOrFinal}{Final}
%------
\newcommand{\DelNumber}{D\WorkPackage.\DelID }
\title{\DelNumber{} -- \DelTitle}
\author{\LeadAuthor}
\begin{document}
\input{01-title}
\pagenumbering{roman}
\rfoot{ \thepage\ of viii}
\input{02-info}
\input{03-versioning}
\input{04-abbreviations}
\tableofcontents
\clearpage
%\listoffigures
%\clearpage
%\listoftables
%\clearpage
\pagenumbering{arabic}
\rfoot{ \thepage\ of 6}
\input{05-content}
\clearpage
\bibliography{references}
\pagenumbering{Roman}
\rfoot{ \thepage\ of I}
\appendix
\input{appendix.tex}
\end{document}