-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththesis.tex
153 lines (124 loc) · 2.87 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
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
% K.M.S.
% 2015
\documentclass[10pt,a4paper]{report}
\usepackage[pdftex]{graphicx}
\usepackage[bookmarks,
colorlinks=false,
pdfborder={0 0 0},
pdftitle={<pdf title here>},
pdfauthor={Kristi Short},
pdfsubject={<subject here>},
pdfkeywords={<keywords here>}]{hyperref}
\usepackage{appendix}
<<<<<<< Local Changes
\usepackage[toc,xindy]{glossaries}
\usepackage[toc]{glossaries}
=======
\usepackage[toc,xindy]{glossaries} % Have xindy Make sure have xindy again after wipe
\usepackage[toc]{glossaries}
>>>>>>> External Changes
\usepackage{amsmath, amssymb, amsthm}
% Packages supporting cryptocode package
usepackage[usenames]{xcolor}
\usepackage{hyperref}
\usepackage[
n,
operators,
advantage,
sets,
adversary,
landau,
probability,
notions,
logic,
ff,
mm,
primitives,
events,
complexity,
asymptotics,
keys]{cryptocode}
\usepackage{url}
\usetikzlibrary{shapes.callouts}
\usepackage{listings}
\usepackage{trace}
\usepackage{makeidx}
\usepackage{mdframed}
\usepackage{csquotes}
\usepackage{fullpage}
\usepackage{dashbox}
\usepackage{todonotes}
\usepackage{cryptocode}
% complexity package
\usepackage[classfont=bold,langfont=roman,funcfont=italic,basic]{complexity}
<<<<<<< Local Changes
\usepackage{amsrefs}
=======
>>>>>>> External Changes
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% %
% % Some common theorem-ish structures to use
% %
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\newtheoremstyle{bfthm}%
{}{}%
{\itshape}%
{\bfseries}{.}%
{}%
{\thmname{#1}\thmnumber{ #2}\thmnote(#3)}}
\newtheorem{lem}{Lemma}
\newtheorem{prop}{Proposition}
\newtheorem{def}
{Definition}% name
{3pt}
{3pt}
{}
{}
{\rmshape}
{:}
{.5em}
{} % definition
\newtheorem{xca}{Example}
\newtheorem*{rem}{Remark}
\newtheorem*{note}%
{Note}% name
{3pt}% space above
{3pt}% space below
{}% body font
{}% indent amount
{\itshape}% heading shape
{:}% colon after heading
{.5em}% space after colon
{}% headspace
\newtheorem{case}{Case}
\newtheorem{con}{Construction}
\todo{change documentclass}
\makeglossaries
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\begin{document}
% Front Matter
\include{title}
\thispagestyle{empty}
\include{abstract}
\pagenumbering{roman} %numbering before main content starts
\tableofcontents
\listoffigures
\listoftables
%%%%%%%%%%%%%%%%%%%%%%%%%
\newpage
\pagenumbering{arabic} %reset numbering to normal for the main content
\include{glossary}
\include{introduction}
<<<<<<< Local Changes
\include{background}
\include{conclusion}
\
% End Matter
\include{acknowledgements}
%\include{appendix}
%\include{bibliography}
%\printacronyms
%\printglossaries
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\end{document}