-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathdissertation.tex
87 lines (63 loc) · 1.77 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
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
\documentclass[nativefonts]{dissertation} % use native fonts
% Add bibliography as external .bib file; use biblatex
\addbibresource{bibliography.bib}
\begin{document}
%% Specify the title and author of the thesis. This information will be used on
%% the title page (in title/title.tex) and in the metadata of the final PDF.
\title[Optional Subtitle]{Fancy thesis title}
\author{Albert}{Einstein}
%% Front matter: Use Roman numerals for the page numbers of the title pages and table of
%% contents.
\frontmatter
\include{title/title}
%% The (optional) dedication can be used to thank someone or display a
%% significant quotation.
\dedication{\epigraph{Science is a wonderful thing \\ if one does not have to earn one's living at it.}{Albert Einstein}}
% Table of Contents
\setcounter{tocdepth}{2}
\tableofcontents
% Summary
\include{summary/summary}
% Preface
\include{preface/preface}
%% Use Arabic numerals for the page numbers of the chapters.
\mainmatter
%% Turn on thumb indices.
\thumbtrue
% Chapter
\include{chapter-1/chapter-1}
% Chapter
\include{chapter-2/chapter-2}
% Conclusion
\include{conclusion/conclusion}
% Epilogue
\include{epilogue/epilogue}
%% Back matter
\backmatter
% Acknowledgements
\include{acks/acks}
%% Use letters for the chapter numbers of the appendices.
\appendix
\include{appendix-a/appendix-a}
%% Turn off thumb indices for unnumbered chapters.
\thumbfalse
% Curriculum Vitae
\include{cv/cv}
%\include{publications/publications}
% List of Figures
\setheader{List of Figures}
\makeatletter
\renewcommand*\l@figure{\@dottedtocline{1}{1.5em}{3.3em}}
\makeatother
\listoffigures
\clearpage
% Bibliography
\setheader{Bibliography}
\nocite{*} % include all references in bib file
\printbibliography
[
heading=bibintoc,
title={References}
]
\clearpage
\end{document}