-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmain.tex
More file actions
80 lines (58 loc) · 1.39 KB
/
main.tex
File metadata and controls
80 lines (58 loc) · 1.39 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
\documentclass[12pt]{book}
\usepackage[utf8]{inputenc}
\usepackage{amsmath, amssymb, amsfonts, amsthm}
\usepackage{bbm}
\usepackage{url}
\usepackage{geometry}
\geometry{
a4paper,
left=20mm,
right=20mm
}
\linespread{1.1}
\usepackage{soul} % For strikethrough
\usepackage{pgfplots}
\pgfplotsset{compat=newest}
\usepackage{subfigure}
\usepackage{mathtools}
\mathtoolsset{showonlyrefs}
\usepackage{xcolor}
\definecolor{linkcolour}{rgb}{0,0.2,0.6}
\usepackage{hyperref}
\hypersetup{colorlinks,breaklinks,urlcolor=linkcolour, linkcolor=linkcolour}
\renewcommand{\iff}{\Longleftrightarrow}
\newtheorem{theorem}{Theorem}[chapter]
\newtheorem{prop}[theorem]{Proposition}
\newtheorem{cor}[theorem]{Corollary}
\newtheorem{lemma}[theorem]{Lemma}
\theoremstyle{definition}
\newtheorem{defn}{Definition}[chapter]
\theoremstyle{remark}
\newtheorem{ex}{Example}[chapter]
\newtheorem{rmk}[theorem]{Remark}
\usepackage{enumitem}
\setenumerate[1]{label=(\roman*)}
\title{Applied Stochastic Processes Notes}
\author{Prof. Vincent Tassion\\ Transcription: Trevor Winstral}
\date{Spring Semester 2021}
\setcounter{chapter}{-1}
\begin{document}
\maketitle
\tableofcontents
\newpage
\include{chap1.tex}
\newpage
\include{chap2.tex}
\newpage
\include{chap3.tex}
\newpage
\include{chap4.tex}
\newpage
\include{chap5.tex}
\newpage
\include{chap6.tex}
\newpage
\include{chap7.tex}
\newpage
\include{appendix.tex}
\end{document}