-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.tex
118 lines (84 loc) · 2.18 KB
/
main.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
\documentclass[12pt]{article}
\usepackage[utf8]{inputenc}
\usepackage{algorithm}% http://ctan.org/pkg/algorithms
\usepackage{algpseudocode}% http://ctan.org/pkg/algorithmicx
\usepackage{graphicx}
\usepackage{fancyhdr}
\usepackage{setspace}
\usepackage{minted}
\usepackage{biblatex}
\usepackage{svg}
\usepackage{listings}
%inline verbatim%
\usepackage{fancyvrb}
\addbibresource{references.bib}
\pagestyle{fancy}
% remove header
\renewcommand{\headrulewidth}{0pt}
\fancyhead{}
% set margin
\usepackage[
top=1in,
bottom=1in,
left=1.5in,
right=1in
]{geometry}
\begin{document}
\begin{titlepage}
\begin{center}
Kalamazoo College\\
Senior Individualized Project in Computer Science
\vspace*{3cm}
\textbf{Developing a Reusable Framework\\
for Data Fetching and Mutation}
\vspace{0.3cm}
GraphQL to SQL query mapping\\
using existing Typescript technologies
\vspace{1.5cm}
\textbf{Joshua Gibson}
\vspace{4cm}
Faculty Supervisor:\\
Dr. Eric Barth\\
Assistant Provost and Professor of Mathematics\\
Kalamazoo College\\
Kalamazoo, MI
\vspace{3cm}
A paper submitted in partial fulfillment of the requirements for the degree of Bachelor of Arts at Kalamazoo College
\vspace{2cm}
2019
\end{center}
\end{titlepage}
\pagenumbering{gobble}
%empty page
\null \newpage
\pagenumbering{roman}
\setcounter{page}{2}
\doublespacing
\input{sections/acknowledgements.tex}
\newpage
\input{sections/abstract.tex}
\newpage
\singlespacing
\tableofcontents
\doublespacing
\newpage
\listoffigures
\newpage
\pagenumbering{arabic}
\input{sections/introduction.tex}
\input{sections/technologies/technologies.tex}
\input{sections/motivation.tex}
\input{sections/query-mapping/query-mapping.tex}
\input{sections/framework/framework.tex}
\input{sections/limitations.tex}
\input{sections/future-work.tex}
\input{sections/conclusion.tex}
\newpage
\setcounter{page}{1}
\input{sections/appendices/appendices.tex}
\newpage
\printbibliography
\addcontentsline{toc}{section}{References}
%\bibliographystyle{plain}
%\bibliography{references}
\end{document}