-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmythesis.tex
197 lines (150 loc) · 5 KB
/
mythesis.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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
\documentclass[letterpaper,12pt,onecolumn,final]{report}
\pdftrailerid{}
\pdfsuppressptexinfo15
\pdfminorversion=4
%% MANDATORY PACKAGES
\usepackage{cuthesis} % Concordia's thesis style
\usepackage[english]{babel} % load english localization
\usepackage{type1ec} % type 1 font
\usepackage[T1]{fontenc} % correct some font representation, needs cm-super fonts
\usepackage{times} % use Times New Roman font
\usepackage[titletoc,title]{appendix} % include Appendix command, add to ToC
\usepackage{setspace} % control double/single line spacing
%% OPTIONAL PACKAGES
%\counterwithout{footnote}{chapter} % do no reset footnote # between chapters
\usepackage[hyphens]{url} % print links
\usepackage{hyperref} % provides hyperlinks (text different than link)
%\usepackage[hyphenbreaks]{breakurl} % break long URL after hyphens
\hypersetup{
colorlinks=true,
breaklinks=true,
linkcolor=black,
citecolor=black,
urlcolor=black,
filecolor=black,
linktoc=all,
}
\usepackage{graphicx}
%\graphicspath{{img/}}
\usepackage{blindtext}
%% CUSTOM MACROS
%\newcommand{\tickyes}{{\small\checkmark}}
%\newcommand{\tickno}{{\small$\times$}}
%% CUSTOM COMMANDS
%\newcommand{\subhead}[1]{\noindent{\textbf{#1.}}}
%% THESIS SETTINGS
\author{John Doe}
\title{My Super Thesis}
% As of 2019, title is no longer used...
%\titleOfPhDAuthor{Mr.} % or Ms., Mrs., Miss, etc. (only for PhD's)
% if PhD, uncomment:
\PhD
% else if Master's, uncomment:
%\mastersDegree{Master of Applied Science}
\program{Information and Systems Engineering}
%\program{Computer Science}
\dept{The Concordia Institute\\for\\Information Systems Engineering}
%\dept{The Department\\of\\Computer Science and Software Engineering}
%% See current GPD at https://www.concordia.ca/admissions/graduate/programs/contacts.html
\GpdOrChairOfDept{Dr.\ GPD}
\isGpd % Chair by default
%% See current Dean at https://www.concordia.ca/ginacody/about/leadership/office-dean/dean-of-engineering-and-computer-science.html
\deanOfENCS{Dr.\ Amir Asif}
\chairOfCommittee{Dr.\ Chair}
\examinerExternal{Dr.\ External}
\examinerFirst{Dr.\ Examiner1}
\examinerSecond{Dr.\ Examiner2}
\examinerExternalToProgram{Dr.\ ExternalToProgram}
\supervisor{Dr.\ Supervisor}
%% Following two lines are required if you have a co-supervisor
%\hasCosupervisor
%\coSupervisor{Dr.\ Co-supervisor}
%% Comment to use current month, needs to match initial submission
\submitmonth{May}
\submityear{2019}
%% Comment if date of defence is unknown yet, fill for final submission
\defencedate{July 1, 2019}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\doublespacing
\begin{document}
\begin{abstract}
{%trick to force double spacing in the abstract, otherwise some paragraphs may show single spaced
\setstretch{1.6667}
\blindtext[1]
\blindtext[1]
\blindtext[1]
\blindtext[1]
}
\end{abstract}
%\doublespacing
\begin{acknowledgments}
% keep this section even if empty
\blindtext[2]
\end{acknowledgments}
%%%%%%%%%%%%%%%%%%%%%%%%
\chapter{Introduction}
% suggestion of intro
Hello~\cite{cold-boot-attack}.
\section{Motivation}
\blindtext[5]
\section{Thesis Statement}
\blindtext[2]
\section{Objectives and Contributions}
\blindtext[3]
\section{Related Publications}
\blindtext[1]
\section{Outline}
The rest of the thesis is organized as follows...
%%%%%%%%%%%%%%%%%%%%%%%%
\chapter{Background}
\label{chap:background}
\blindtext[10]
%%%%%%%%%%%%%%%%%%%%%%%%
\chapter{Then}
%%%%%%%%%%%%%%%%%%%%%%%%
\chapter{Conclusion and future work}
\label{chap:conclusion}
\blindtext[5]
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% Bibliography
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\clearpage
\phantomsection
\addcontentsline{toc}{chapter}{Bibliography} % Add Bibliography to TOC
\singlespacing % save space in the bibliography
\bibliographystyle{abbrv}
\bibliography{references}
%%%%%%%%%% Appendices %%%%%%%%%%%%%%%%
% ---- Appendix settings. Please Do NOT change them. -----
\appendix
\setcounter{table}{0} % reset the table counter
\setcounter{figure}{0} % reset the figure counter
\renewcommand{\thefigure}{\Alph{chapter}.\arabic{figure}} % numbering the a figure in Appendix as Figure A.2, Figure B.1, etc.
\renewcommand{\thetable}{\Alph{chapter}.\arabic{table}} % numbering the a table in Appendix as Table A.2, Table B.1, etc.
%%%%%%%%%% Body of Appendix %%%%%%%%%%%%%%%%
\begin{appendices}
\doublespacing
\chapter{First Appendix}
\label{chap:apdx1}
\blindmathpaper
\chapter{Concordia Logos}
\label{chap:logos}
\begin{figure}[h!]
\centering
\includegraphics{logos/Concordia_University_logo}
\caption{Concordia University}
\end{figure}
\vspace{2em}
\begin{figure}[h!]
\centering
\includegraphics{logos/Concordia_GinaCody_vertical}
\caption{Gina Cody School of Engineering and Computer Science (vertical)}
\end{figure}
\vspace{2em}
\begin{figure}[h!]
\centering
\includegraphics{logos/Concordia_GinaCody_horizontal}
\caption{Gina Cody School of Engineering and Computer Science (horizontal)}
\end{figure}
\end{appendices}
\end{document}