-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathmain.tex
143 lines (119 loc) · 4.33 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
\PassOptionsToPackage{dvipsnames}{xcolor}
% **************************************************
% Document Class Definition
% **************************************************
\documentclass[%
paper=A4, % paper size --> A4 is default in Germany
twoside=true, % onesite or twoside printing
openright, % doublepage cleaning ends up right side
parskip=half, % spacing value / method for paragraphs
chapterprefix=true, % prefix for chapter marks
11pt, % font size
headings=normal, % size of headings
bibliography=totoc, % include bib in toc
listof=totoc, % include listof entries in toc
titlepage=on, % own page for each title page
captions=tableabove, % display table captions above the float env
chapterprefix=false, % do not display a prefix for chapters
appendixprefix=false, % but display a prefix for appendix chapter
draft=false, % value for draft version
]{scrreprt}%
% **************************************************
% Setup YOUR thesis document in this file !
% **************************************************
\input{setup}
% **************************************************
% Document CONTENT
% **************************************************
\begin{document}
% uncomment the following command to fill up pages with
% whitespace instead of aligning the first and last lines
% of a page (see \raggedbottom vs. \flushbottom)
%\raggedbottom
% --------------------------
% rename document parts
% --------------------------
% > set short label names for floating environments figure and table
\renewcaptionname{english}{\figurename}{Fig.}
\renewcaptionname{english}{\tablename}{Tab.}
% > rename the title of the LOL, i.e. list of listings (default is "Listings")
\renewcommand*{\lstlistlistingname}{List of Listings}
% --------------------------
% Front matter
% --------------------------
\pagenumbering{roman} % roman page numbing (invisible for empty page style)
%% Uncomment below commands if you want the arabic numbering to include Front pages
%% This is only useful if you are a literature student.
% \pagestyle{empty} % no header or footers
% \pagenumbering{arabic} % arabic page numbering
% \setcounter{page}{1} % set page counter
\input{content/front/titlepages} % INCLUDE: all titlepages
\clearpage
\input{content/front/copyright.tex} % INCLUDE: Sorbonne Univ Thesis Copyright
\cleardoublepage
\pagestyle{plain} % display just page numbers
%
\input{content/front/remerciements.tex} % INCLUDE: acknowledgement
\cleardoublepage
%
\input{content/front/abstract-en} % INCLUDE: the abstracts (english)
\clearpage
\input{content/front/abstract-fr} % INCLUDE: the abstracts (french)
\cleardoublepage
%
\currentpdfbookmark{\contentsname}{toc}
\setcounter{tocdepth}{2} % define depth of toc
\tableofcontents % display table of contents
\cleardoublepage
% --------------------------
% Body matter
% --------------------------
\pagestyle{empty} % no header or footers
\pagenumbering{arabic} % arabic page numbering starts from Body
\pagestyle{scrheadings} % header and footer style
%% Uncomment the following lines using the \part command
%% to add part sections
\input{content/introduction} % INCLUDE: introduction
\part{Background}
\label{part:background}
\import{content/soa}{soa}
\part{Contributions}
\label{part:contributions}
\import{content/contributions}{contributions}
\part{Experimental Evaluation}
\label{part:evaluation}
\import{content/evaluation}{evaluation}
\part{Conclusion}
\label{part:conclusion}
\input{content/conclusion}
% --------------------------
% Back matter
% --------------------------
%
{%
\setstretch{1.1}
\renewcommand{\bibfont}{\normalfont\small}
\setlength{\biblabelsep}{0pt}
\setlength{\bibitemsep}{0.5\baselineskip plus 0.5\baselineskip}
\printbibliography[nottype=online]
\newrefcontext[labelprefix={@}]
\printbibliography[heading=subbibliography,title={Webpages},type=online]
}
\cleardoublepage
% \input{content/glossary}
\listoffigures
\cleardoublepage
\listoftables
\cleardoublepage
\lstlistoflistings
\cleardoublepage
\appendix
\input{appendix/resume-fr.tex}
\cleardoublepage
\clearpage
\newpage
\mbox{}
% **************************************************
% End of Document CONTENT
% **************************************************
\end{document}