-
Notifications
You must be signed in to change notification settings - Fork 26
/
main.tex
74 lines (61 loc) · 1.74 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
% -*- Mode:TeX -*-
%% The documentclass options along with the pagestyle can be used to generate
%% a technical report, a draft copy, or a regular thesis. You may need to
%% re-specify the pagestyle after you \include cover.tex. For more
%% information, see the first few lines of mitthesis.cls.
\documentclass[12pt,twoside]{mitthesis}
\usepackage[top=1in, bottom=1.5in, left=1in, right=1in]{geometry}
\usepackage{stmaryrd}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{amsopn}
\usepackage{amssymb}
\usepackage{listings}
\usepackage{hyperref}
\usepackage{url}
\usepackage[nottoc]{tocbibind}
\usepackage{appendix}
\usepackage{multicol}
\usepackage{bussproofs}
\usepackage[lighttt]{lmodern}
\usepackage{pgfplots}
\pgfplotsset{width=5.5in,height=3.5in}
\usetikzlibrary{positioning}
\pagestyle{plain}
\newcommand{\code}[1]{\texttt{#1}}
\lstdefinelanguage{julia}{
basicstyle=\small\ttfamily,
showspaces=false,
showstringspaces=false,
keywordstyle={\textbf},
morekeywords={if,else,elseif,while,for,begin,end,quote,try,catch,return,local,abstract,function,stagedfunction,macro,ccall,finally,typealias,break,continue,type,global,module,using,import,export,const,let,bitstype,do,in,baremodule,importall,immutable},
escapeinside={~}{~},
morecomment=[l]{\#},
% commentstyle=\textsf,
commentstyle={},
morestring=[b]",
}
\lstdefinestyle{ttcode}{
basicstyle=\small\ttfamily,
showspaces=false,
showstringspaces=false,
}
\begin{document}
\include{cover}
\include{contents}
\include{chap1}
\include{chap2}
\include{chap3}
\include{chap4}
\include{chap5}
\include{chap6}
\begin{appendices}
\include{appa}
\include{appb}
\end{appendices}
\newpage
\begin{singlespace}
\bibliographystyle{acm}
\bibliography{main}
\end{singlespace}
\end{document}