-
Notifications
You must be signed in to change notification settings - Fork 2
/
Thesis.lhstex
85 lines (55 loc) · 1.44 KB
/
Thesis.lhstex
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
%include topmatter.tex
\author{\textbf{Ningning Xie}}
\date{July 2021}
\begin{document}
\title{Higher-rank Polymorphism: Type Inference and Extensions}
\maketitle
\begin{abstract}
\vspace{-25pt}
\input{Sources/Abstract}
\end{abstract}
%%---------------------%%
\frontmatter
%%---------------------%%
\makedeclaration
\makeAck
\tableofcontents
\listoffigures
% \listoftables
% \listoftheorems[ignoreall, show={theorem,lemma}]
%%---------------------%%
\mainmatter
%%---------------------%%
\part{Prologue}
\include{Sources/Introduction}
\include{Sources/Background}
\part{Bidirectional Type Checking With the Application Mode} \label{part:typeinference}
\include{Sources/BiDirectional}
\part{Higher-Rank Polymorphism and Gradual Typing}
\label{part:gradual}
\include{Sources/Gradual}
\include{Sources/Dynamic}
\part{Type Inference with Promotion}
\label{part:promotion}
\include{Sources/Promotion}
\include{Sources/KindInference}
\part{Epilogue}
\include{Sources/Related}
\include{Sources/Future}
% This ensures that the subsequent sections are being included as root
% items in the bookmark structure of your PDF reader.
\bookmarksetup{startatroot}
%%---------------------%%
% \backmatter
%%---------------------%%
\cleardoublepage
\bibliography{Thesis}
\part{Technical Appendix}
\appendix
\include{Gen/Appendix}
\end{document}
%%% Local Variables:
%%% mode: latex
%%% TeX-master: "Thesis"
%%% org-ref-default-bibliography: "Thesis.bib"
%%% End: