-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.tex
66 lines (49 loc) · 1.57 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
%This file is the main file where the final document is generated
\documentclass{these-ubl}
\usepackage{bibunits}
\geometry{vmargin=4.0cm}
\input{./Couverture-these/pagedegarde} % page de garde UR1
% Select the content language following this line
\selectlanguage{english}
%input acknowledgement chapter
\clearemptydoublepage
\input{./Acknowledgement}
%Inut resume en Francais
\clearemptydoublepage
\input{./Resume-Francais/Resume-Francais}
%This command will generate the front cover
\clearemptydoublepage
\frontmatter
\renewcommand{\contentsname}{Table of Contents}
\setcounter{tocdepth}{5}
\tableofcontents %sommaire %table of content
\clearemptydoublepage
\input{./Acronymes}
\listoffigures
\addcontentsline{toc}{chapter}{List of figures}
\listoftables
\addcontentsline{toc}{chapter}{List of tables}
\clearemptydoublepage
\input{./Introduction/Introduction}
%\shorttableofcontents{Sommaire}{0}
\clearemptydoublepage
\mainmatter % Ne pas oublier, avec \frontmatter et \backmatter
%this command inputs \frontmatter and \backmatter as a cover in the front and the back
%Input your chapter 1
\input{./Chapitre1/Chapitre1}
%Input your chapter 2
\clearemptydoublepage
\input{./Chapitre2/Chapitre2}
\clearemptydoublepage
\backmatter
\input{./Conclusion/Conclusion}
% \clearemptydoublepage
\input{./PublicationList/PublicationList}
\clearemptydoublepage
\input{./Appendix/Appendix}
\clearemptydoublepage
% Pour avoir la quatrième de couverture sur une page paire
% To have the back cover on an even page
\cleartoevenpage[\thispagestyle{empty}]
\input{./ResumeFinal}
\end{document}