-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththesis.tex
127 lines (103 loc) · 3.08 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
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
% Based on the University of Calgary thesis template by
% N. Mancell (1998,2006), D. Teale (1992), and T. Zhang (2012)
% Werid fix needed to get colour working with graphicx
\makeatletter
\let\my@xfloat\@xfloat
\makeatother
\documentclass[12pt]{ucalgthes1}
\makeatletter
\def\@xfloat#1[#2]{
\my@xfloat#1[#2]%
\def\baselinestretch{1}%
\@normalsize \normalsize}
\makeatother
% end of fix
\usepackage[utf8]{inputenc} % unicode input
\usepackage[canadian]{babel} % hyphenation rules
\usepackage[hidelinks]{hyperref} % urls
%\usepackage[section]{placeins} % constrain figure placement
\usepackage[letterpaper]{geometry} % margins
\geometry{
left=1in,
right=1in,
top=1in,
bottom=1in,
}
% Commands to fix math spacing
\let\originalleft\left
\let\originalright\right
\renewcommand{\left}{\mathopen{}\mathclose\bgroup\originalleft}
\renewcommand{\right}{\aftergroup\egroup\originalright}
%
% Packages
%
\usepackage{amsmath}
\usepackage{algorithmic}
\usepackage{algorithm}
\usepackage{graphicx}
\usepackage{amsfonts}
\usepackage{textcomp}
\usepackage{tabularx}
\usepackage{booktabs}
\usepackage{subcaption}
\usepackage{mathspec}
\usepackage[final]{pdfpages}
\usepackage[capitalize, nameinlink, noabbrev]{cleveref}
% Font stuff
\defaultfontfeatures{Ligatures=Common, Numbers=Uppercase}
\setallmainfonts{Cambria}
\setsansfont{Calibri}
\setmonofont{Consolas}
\setmathsfont(Digits,Latin,Greek)[Numbers={Lining,Proportional}]{Cambria}
\urlstyle{sf}
% Path for figures
\graphicspath{{./images/}}
%
% Enter your own information in these fields
%
\title{Semiregular Degenerate Refinement for 3D Discrete Global Grid Systems}
\author{Benjamin Luke Ulmer}
\thesisyear{2020}
\thesis{thesis} % can be thesis or dissertation
\newcommand{\thesistitle}{Semiregular Refinement Applied to 3D Discrete Global Grid Systems}
\monthname{JUNE}
\dept{GRADUATE PROGRAM IN COMPUTER SCIENCE}
\degree{MASTER OF SCIENCE}
%
% End of supplied information
%
%DIF PREAMBLE EXTENSION ADDED BY LATEXDIFF
%DIF UNDERLINE PREAMBLE %DIF PREAMBLE
\RequirePackage[normalem]{ulem} %DIF PREAMBLE
\RequirePackage{xcolor}
\providecommand{\DIFadd}[1]{{\protect\color{blue}\uwave{#1}}} %DIF PREAMBLE
\providecommand{\DIFdel}[1]{{\protect\color{red}\sout{#1}}} %DIF PREAMBLE
%DIF SAFE PREAMBLE %DIF PREAMBLE
\providecommand{\DIFaddbegin}{} %DIF PREAMBLE
\providecommand{\DIFaddend}{} %DIF PREAMBLE
\providecommand{\DIFdelbegin}{} %DIF PREAMBLE
\providecommand{\DIFdelend}{} %DIF PREAMBLE
%DIF FLOATSAFE PREAMBLE %DIF PREAMBLE
%DIF END PREAMBLE EXTENSION ADDED BY LATEXDIFF
\begin{document}
\input{front-matter}
\pagenumbering{arabic}
\include{introduction}
\include{background}
\include{3ddggs}
\include{sdog}
\include{grid-extension}
\include{mapping}
\include{coding}
\include{use-cases}
\include{discussion}
\include{conclusion}
% end
\appendix
\bibliographystyle{ieeetr}
%\nocite{*}
\bibliography{sources}
\chapter{Copyright Permissions}
This appendix contains the copyright permission for the reuse of \cref{fig:edge-continuity} from~\cite{hennerdal2015beyond}.
\includepdf[pages=-,pagecommand={},width=\paperwidth]{copyright.pdf}
\end{document}