-
Notifications
You must be signed in to change notification settings - Fork 20
/
stan_intro.tex
61 lines (48 loc) · 1.53 KB
/
stan_intro.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
\documentclass[11pt]{book}
\usepackage{geometry}
\geometry{letterpaper}
\usepackage{graphicx}
\usepackage{amssymb, amsmath}
\usepackage{subfigure}
\usepackage[table]{xcolor}
\usepackage{wasysym}
\usepackage{tikz}
\usepackage[colorlinks,linkcolor=blue,citecolor=blue,urlcolor=blue]{hyperref}
\usetikzlibrary{intersections, backgrounds, calc}
\definecolor{light}{RGB}{220, 188, 188}
\definecolor{mid}{RGB}{185, 124, 124}
\definecolor{dark}{RGB}{143, 39, 39}
\definecolor{highlight}{RGB}{0, 255, 0}
\definecolor{gray60}{gray}{0.6}
\definecolor{gray70}{gray}{0.7}
\definecolor{gray80}{gray}{0.8}
\definecolor{gray90}{gray}{0.9}
\definecolor{gray95}{gray}{0.95}
\newcommand{\dd}{ \mathrm{d} }
\newcommand{\DD}{ \mathcal{D} }
\newcommand{\PP}{ \mathbb{P} }
\newcommand{\EE}{ \mathbb{E} }
\newcommand{\RR}{ \mathbb{R} }
\newcommand{\EV}[1]{\ensuremath { \mathcal{E} \! \left( #1 \right) } }
\newcommand{\bt}{ \mbox{\boldmath{$\theta$}} }
\usepackage[T1]{fontenc}
\usepackage{titlesec, blindtext, color}
\newcommand{\hsp}{\hspace{20pt}}
\titleformat{\chapter}[hang]{\Huge\bfseries}{\thechapter\hsp\textcolor{gray80}{|}\hsp}{0pt}{\Huge \bfseries }
\newcommand{\introversion}{0.0.0}
\graphicspath{{figures/}}
\begin{document}
\pagestyle{plain}
\frontmatter
\include{0-title}
\tableofcontents
\include{0-preface}
\mainmatter
\include{1-logic}
\include{2-probability_theory}
\include{3-probability_practice}
\include{4-probability_computation}
\include{5-deterministic_estimators}
\include{6-stochastic_estimators}
\include{7-bayesian_inference}
\end{document}