-
Notifications
You must be signed in to change notification settings - Fork 0
/
GmE300_Thesis.tex
executable file
·141 lines (123 loc) · 4.54 KB
/
GmE300_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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
%--------------------------------------------------------------------------
% This LaTeX document was developed for my GmE300 master's thesis submitted
% as a requirement under the Master of Geomatics Engineering, Major in
% Remote Sensing at the Department of Geodetic Engineering, University of
% the Philippines Diliman.
%
% The LaTeX template follows the thesis manuscript template prescribed by
% the National Graduate School of Engineering, which may also be used as
% template by graduate students for creating thesis manuscripts from other
% departments.
%
% This template was based on the original template written by M. Imran
% (18 Jun 2001), and subsequently updated by Ian Craig (20 Oct 2014) based
% on the Mechanical Engineering Thesis Guidelines, the University of New
% South Wales, Australia.
%
% Revision by: Jose Don T. De Alban
% Date revised: 30 Jun 2017
% License:
%
%--------------------------------------------------------------------------
%
% This main 'GmE300_Thesis.tex' file controls the whole document. It has
% three functions:
% 1. Include and configure any packages used in the document
% 2. Define page numbering, structure, and bibliography
% 3. Import/Include all other files
%
%--------------------------------------------------------------------------
\documentclass[thesis]{GmE300_Thesis}
%--------------------------------------------------------------------------
% Load Packages
%--------------------------------------------------------------------------
\usepackage{algorithm}
\usepackage{algpseudocode} % Display algorithms nicely. http://goo.gl/6Z93aV
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{array}
\usepackage{booktabs} % From http://goo.gl/2ezu9p to make tables look nicer.
\usepackage{caption}
%\usepackage{cite}
\usepackage{color}
\usepackage{ctable}
\usepackage[draft]{listofsymbols} % Add list of symbols.
\usepackage{epic}
\usepackage{epsfig}
\usepackage{epstopdf}
\usepackage{fancyhdr}
\usepackage{fmtcount}
\usepackage{graphics}
\usepackage{graphicx}
\usepackage{hyperref}
\usepackage{indentfirst} % To indent first line of paragraph
\usepackage{latexsym}
\usepackage{listings} % To format code
\usepackage{longtable}
\usepackage{ltablex}
\usepackage{mathtext}
\usepackage{mdwlist} % To reduce list vertical spacing. http://goo.gl/nyLux
\usepackage{microtype} % To improve line filling
\usepackage{multirow}
%\usepackage{natbib}
\usepackage{pdflscape} % Rotate display of landscape pages in PDFs http://goo.gl/wbg4fy
\usepackage{printlen} % Print variables. http://goo.gl/3ZdAPV
\usepackage{setspace}
%\usepackage[space]{grffile} % Allow spaces in file path names
\usepackage{subcaption} % Replaces subfig and subfigure.
\usepackage{tabularx}
\usepackage{theorem}
\usepackage[toc,page]{appendix}
\usepackage{usnomencl} % For making a glossary of nomenclature.
\usepackage{url}
%\hypersetup{colorlinks=true,linkcolor=blue,filecolor=magenta,urlcolor=cyan}
\urlstyle{rm}
%\uselengthunit{in} % See above
%\printlength{\textwidth} % See above
%\the\textwidth % \textwidth = 426.79134 pt = 149.99823 mm = 5.90666 in. An alternative method of printing variables.
% @300dpi --> 1771 px.
% For adding Latex Section symbols to the actual headings:
%\usepackage{titlesec}.
%\titleformat{\section}{\normalfont\Large\bfseries}{\S\thesection}{1em}{}
% For cyrillic font (naiive i)
%\usepackage[OT2,OT1]{fontenc}
%--------------------------------------------------------------------------
% Setup
%--------------------------------------------------------------------------
% Bibliography File Path
\bibliography{../MSc Thesis/references/bibliography}
% Inputs
\input{include/format} % format.tex
\include{include/commands} % commands.tex
% Images Directories
\graphicspath{{./images/}
{./images/introduction/}
{./images/literature-review/}
{./images/methodology/}
{./images/results/}
{./images/appendix/segmentation/}
{./images/appendix/decision-trees/case1/}
{./images/appendix/decision-trees/case2/}
{./images/appendix/decision-trees/case3/}
{./images/appendix/decision-trees/case4/}}
\begin{document}
\input{include/symbolslist} % symbolslist.tex
% Header Pages
\input{preliminaries/coverpage}
% Setup Contents
\pagenumbering{arabic}
\setcounter{page}{1}
\setcounter{chapter}{0}
\setcounter{equation}{0}
% Chapters
\include{main/1_introduction}
\include{main/2_literaturereview}
\include{main/3_methodology}
\include{main/4_results}
\include{main/5_discussion}
\include{main/6_conclusion}
% Bibliography
\printbibliography
% Appendix
\include{supplementary/appendix}
\end{document}