forked from mikispag/UICThesis-Template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
thesis.tex
100 lines (84 loc) · 2.22 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
% UIC Thesis Template by
% Michele Spagnuolo - http://michele.spagnuolo.me
% Feb 2013
\documentclass[letterpaper,11pt,oneside,final]{uicthesis}
\usepackage{amsfonts, amsmath, amsthm, amssymb, epsfig, graphicx, float}
\usepackage[longnamesfirst,square,sort&compress, comma, super]{natbib}
\usepackage[xindy,style=index]{glossaries}
\usepackage{bera}
\usepackage{lipsum}\usepackage{lipsum}
% Configuration
% Thesis title
\newcommand{\thesisTitle}{Thesis Title}
% Thesis author
\newcommand{\thesisAuthor}{Michele Spagnuolo}
% Author's previous degrees
\newcommand{\authorDegrees}{B.S., Politecnico di Milano, July 2011}
% Current degree (Thesis's degree)
\newcommand{\thesisDegree}{Master of Science in Computer Science}
\usepackage[unicode,
pdftex,
plainpages=false,
linktoc=all,
hyperindex,
breaklinks=true,
citecolor=green,
urlcolor=blue
]{hyperref}
\hypersetup{
pdftitle={\thesisTitle},
pdfauthor={\thesisAuthor}
}
% Style
\input{style/style}
% Acronyms (to appear in the List of Abbreviations)
\makeglossaries
\input{acronyms/acronyms}
\begin{document}
\title{\huge{\thesisTitle}}
\author{\thesisAuthor}
\pdegrees{\authorDegrees}
\degree{\thesisDegree}
\maketitle
\dedication
\input{dedication/dedication}
\acknowledgements
\input{acknowledgements/acknowledgements}
% Optional Preface
% \preface \label{preface}
% Blah
\tableofcontents
\listoftables
\listoffigures
% Remember to run makeglossaries thesis
\glsaddall
\printglossary[title=LIST OF ABBREVIATIONS]
\summary \label{summary}
Summary\ldots
\chapter{Introduction} \label{chap:intro}
\input{chapters/intro}
\chapter{State of the Art} \label{chap:SOA}
\input{chapters/soa}
\chapter{Proposed Approach} \label{chap:approach}
\input{chapters/approach}
\chapter{Proposed Implementation} \label{chap:implem}
\input{chapters/implementation}
\chapter{Experimental Results} \label{chap:results}
\input{chapters/results}
\chapter{Conclusions} \label{chap:conclusion}
\input{chapters/conclusion}
\clearpage
\phantomsection
\appendices
\appendix \label{app:a}
\input{appendices/appa}
\clearpage
\phantomsection
\bib
\bibliography{thesis}
\nocite{*}
\newpage
\phantomsection
\input{vita/vita}
\ldots
\end{document}