-
Notifications
You must be signed in to change notification settings - Fork 3
/
phd-thesis.tex
84 lines (57 loc) · 2.19 KB
/
phd-thesis.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
\documentclass[12pt,a4paper,openright,twoside]{book}
\usepackage[utf8]{inputenc}
\usepackage{phd-thesis}
\usepackage{code-lstlistings}
\usepackage{notes}
\usepackage{shortcuts}
\mainlinespacing{1.241} % line spacing in mainmatter, comment to default (1)
\begin{document}
\frontmatter
\input{front}
\begin{abstract}
Max 2000 characters, strict.
\end{abstract}
\begin{dedication} % this is optional
Optional. Max a few lines.
\end{dedication}
\begin{acknowledgements} % this is optional
Optional. Max 1 page.
\end{acknowledgements}
%----------------------------------------------------------------------------------------
\tableofcontents
\listoffigures % (optional) comment if empty
\lstlistoflistings % (optional) comment if empty
%----------------------------------------------------------------------------------------
\mainmatter
%----------------------------------------------------------------------------------------
\chapter{Introduction}
\label{chap:introduction}
%----------------------------------------------------------------------------------------
Write your intro here.
\sidenote{Add sidenotes in this way. They are named after the author of the thesis}
\paragraph{Structure of the Thesis}
\note{Racall to describe the structure of the paper}
\part{First Part}
\chapter{State of the art}
I suggest referencing stuff as follows: \cref{fig:random-image} or \Cref{fig:random-image}
\begin{figure}
\centering
\includegraphics[width=.8\linewidth]{figures/random-image.pdf}
\caption{Some random image}
\label{fig:random-image}
\end{figure}
\section{Some cool topic}
\part{Second Part}
\chapter{Contribution}
You may also put some code snippet (which is NOT float by default), eg: \cref{lst:random-code}.
\lstinputlisting[float,language=Java,label={lst:random-code}]{listings/HelloWorld.java}
\section{Fancy formulas here}
%----------------------------------------------------------------------------------------
% BIBLIOGRAPHY
%----------------------------------------------------------------------------------------
\backmatter
\part*{}
\nocite{*} % comment this to only show the referenced entries from the .bib file
\bibliographystyle{alpha}
\bibliography{phd-thesis}
\end{document}