-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththesis.tex
73 lines (56 loc) · 1.61 KB
/
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
\documentclass[english,12pt,a4paper,pdftex,sci,utf8]{./styles/aaltothesis}
\usepackage{graphicx}
\usepackage{ifpdf}
\ifpdf
% put here packages only for the PDF:
\DeclareGraphicsExtensions{.pdf,.png,.jpg,.mps}
\usepackage{hyperref}
\else
% put here packages only for the DVI:
\fi
% put all the other packages here:
\usepackage{./styles/clemens_thesis}
% \includeonly{./tex/preamble, ./tex/background }
% Load Glossary and Acronyms
\include{./tex/_glossary}
\begin{document}
\include{./tex/preamble}
\listoftodos
% \maketitle
%\tableofcontents
%\listoffigures
%\listoftables
%% Content
\include{./tex/introduction}
\include{./tex/exploration}
\include{./tex/problem_def}
\include{./tex/methods}
\include{./tex/exp_results}
\include{./tex/discussion}
\include{./tex/conclusions}
%% Bibliography
\clearpage
%% The \phantomsection command is nessesary for hyperref to jump to the
%% correct page, in other words it puts a hyper marker on the page.
\phantomsection
\addcontentsline{toc}{section}{\refname}
%\addcontentsline{toc}{section}{References}
\bibliography{literature/thesis.bib}
\bibliographystyle{apalike}
%\nocite{*}
%% Glossary and Acronyms
\clearpage
\glossarystyle{super}
\setlength{\glsdescwidth}{0.8\textwidth}
\renewcommand*{\arraystretch}{1.5}% default is 1
\renewcommand{\glsnamefont}[1]{\textbf{#1}}
\printglossary[type=\acronymtype]
\clearpage
\glossarystyle{altlist}
\renewcommand*{\arraystretch}{1}% default is 1
\printglossary[type=main]
%% Appendix
\include{./tex/appendix}
% \glsaddall % add all glossary entries, even if not used.
% \glsaddallunused % add all unused glossary entries
\end{document}