forked from informusica/dissertation-tudelft-latex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dissertation.tex
55 lines (36 loc) · 1.3 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
\documentclass{dissertation}
\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]{Title}
\author{Albert}{Einstein}
%% 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}}
\tableofcontents
\include{summary/summary}
\include{preface/preface}
%% Use Arabic numerals for the page numbers of the chapters.
\mainmatter
%% Turn on thumb indices.
\thumbtrue
\include{chapter-1/chapter-1}
%% Turn off thumb indices for unnumbered chapters.
\thumbfalse
\include{conclusion/conclusion}
\include{epilogue/epilogue}
% Choose a bibliography style that you prefer:
% (Plain = numbers within brackets)
\bibliographystyle{plain}
\bibliography{dissertation}
\include{acks/acks}
%% Use letters for the chapter numbers of the appendices.
\appendix
%\include{appendix-a/appendix-a}
\include{cv/cv}
\include{publications/publications}
\end{document}