forked from PeterJackNaylor/my_phd_template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dissertation.tex
59 lines (37 loc) · 1.06 KB
/
dissertation.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
%!TEX encoding = UTF-8 Unicode
\documentclass[a4paper,11pt,twoside]{StyleThese}
\usepackage{psl-cover}
\DeclareGraphicsExtensions{.pdf,.jpeg,.png}
\graphicspath{{./figures/chapter1/}{./figures/appendix/}{./figures/cover/}}
\include{newcommands}
\include{formatAndDefs}
\begin{document}
\dominitoc
% the front matter
\input{frontmatter/personalize}
\maketitle{}
%\copyrightpage
\frontmatter
\input{frontmatter/abstract-fr}
\input{frontmatter/abstract-en}
\input{frontmatter/thanks}
\cleardoublepage
\tableofcontents
\cleardoublepage
\listoffigures \addcontentsline{toc}{chapter}{\listfigurename} \adjustmtc
\listoftables \addcontentsline{toc}{chapter}{\listtablename} \adjustmtc
% include each chapter...
\mainmatter
\setcounter{chapter}{0} % start chapter numbering at 0
\include{chapters/introduction}
\include{chapters/chapter1}
\include{chapters/conclusion}
\begin{appendix}
\include{chapters/appendix/appendix_A}
\end{appendix}
\backmatter
\clearpage
\bibliographystyle{lemieuxdumonde.bst}
\bibliography{references}
\include{nomenclature}
\end{document}