-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproposal.tex.bak
More file actions
176 lines (133 loc) · 3.88 KB
/
proposal.tex.bak
File metadata and controls
176 lines (133 loc) · 3.88 KB
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
%
% proposal.tex
%
% Dissertation Proposal Template.
% School of Computing
% Clemson University
%
\documentclass[10pt]{ClemsonProposal}
% This is nice for source code listings
% \usepackage{listings}
\usepackage{comment}
\usepackage{subfiles}
\usepackage{color}
\usepackage{xr}
\externaldocument{background}
\externaldocument{conclusion}
\externaldocument{embedding}
\externaldocument{eplipl}
\externaldocument{introduction}
\externaldocument{miscrelcon}
\externaldocument{multiparadigm}
\externaldocument{prologin}
\externaldocument{prologinhaskell}
\externaldocument{proposedwork}
\externaldocument{pwp}
\externaldocument{quasiquotation}
\externaldocument{relatedtermskeywords}
\externaldocument{relatedWork}
\externaldocument{ummcpp}
%\externaldocument{workCompleted}
% This is needed to include figures
% \usepackage{graphicx}
% Use any additional packages you might need
%
% Give values to the variables used in this document
%
\title{(An Extension to Haskell / Curry) / (Functional Logic Programming Languages) / (Embedding Prolog in Haskell)}
\department{MCPS}
\documenttype{Thesis Proposal}
\major{Computer Science}
\proposalday{28}
\proposalmonth{June}
\proposalyear{1990}
\author{Mehul Chandrakant Solanki \\230108015 \\solanki@unbc.ca}
\committeechair{Dr. David Casperson}
\committeememberone{Dr. Alex Aravind}
\committeemembertwo{Dr. Mark Shegelski}
%\committeememberthree{Member3 Name}
% Just in case you have more then 3 committee members
% \committeememberfour{Member4 Name}
% \committeememberfive{Member5 Name}
% \committeemembersix{Member6 Name}
%
% PDF Setup -- You should not need to change this
%
\hypersetup{
colorlinks,
linkcolor={black},
citecolor={black},
filecolor={black},
urlcolor={black},
pdftitle={\thetitle},
pdfauthor={\theauthor},
pdfsubject={\thedocumenttype},
pdfkeywords={University of Northern British Columbia, \theauthor, \thedocumenttype},
pdfstartpage={1}
}
%
% User-specified command definitions/redefinitions
%
\newcommand{\cplusplus}{{\rm C\raise.5ex\hbox{\small ++}}}
\begin{document}
% ==========================================================================
% Begin front matter (pages are numbered with roman numerals)
% ==========================================================================
\begin{frontmatter}
\maketitle
\tableofcontents
\newpage
% Generate the abstract
\input{abstract.tex}
\end{frontmatter}
% ==========================================================================
% Begin main matter (pages are numbered with arabic numerals)
% ==========================================================================
\doublespacing % Text should be double spaced
\pagestyle{fancy} % Turn the nice header on for the rest of the document
%
% I use a file for every section. Each of these corresponds to a file
% with the specified name ending in '.tex' (e.g., introduction.tex).
%
\clearpage
\subfile{introduction}
\clearpage
\subfile{proposedWork}
\clearpage
\subfile{background}
\clearpage
\subfile{embedding}
\clearpage
\subfile{multiparadigm}
\clearpage
%\subfile{workCompleted}
%\clearpage
\subfile{relatedWork}
\clearpage
\subfile{eplipl}
\clearpage
\subfile{prologin}
\clearpage
\subfile{prologinhaskell}
\clearpage
\subfile{ummcpp}
\clearpage
\subfile{flpl}
\clearpage
\subfile{quasiquotation}
\clearpage
\subfile{relatedtermskeywords}
\clearpage
\subfile{hwh}
\clearpage
\subfile{pwp}
\clearpage
\subfile{miscrelcon}
\clearpage
\subfile{conclusion}
\clearpage
% ==========================================================================
% Wrap up the document with the Bibliography (looks for the specified .bib)
% ==========================================================================
\makebibliography{bibliography}
\end{document}