-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.tex
54 lines (40 loc) · 1.13 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
\documentclass{report}
\usepackage{amsfonts,amsthm,amsmath,latexsym,amssymb}
\usepackage[margin=1.5in]{geometry}
\usepackage{complexity}
\usepackage{graphicx}
\usepackage[titles,subfigure]{tocloft}
\usepackage{scribe-book}
\usepackage[lined,boxed]{algorithm2e}
\usepackage{caption}
\usepackage{subcaption}
\usepackage{float}
\newcommand{\CYCLE}{{\sf CYCLE~}}
\newcommand{\FPSPACE}{{\sf FPSPACE~}}
\newcommand{\N}{{\mathbb{N}}}
\newcommand{\Z}{{\mathbb{Z}}}
\newcommand{\F}{{\mathbb{F}}}
%% For xy matrix
\input xy
\xyoption{all}
\CompileMatrices
\usepackage{tikz}
\usetikzlibrary{arrows}
\usetikzlibrary{calc,through,backgrounds,decorations.pathmorphing}
% Shows lecture titles and sections. Set 0 to list only chapters.
\setcounter{tocdepth}{1}
\begin{document}
\newpage
\setcounter{page}{1}
\pagenumbering{roman} % Roman numbering in intro portion.
\include{front-page}
\newpage
\listofscribe % For automatic scribe list generation.
\newpage
\tableofcontents
\setcounter{page}{1}
\pagenumbering{arabic} % Arabic page numbering for lectures.
\input{lectures-list.tex}
\bibliographystyle{abbrv}
\bibliography{references}
\end{document}