-
Notifications
You must be signed in to change notification settings - Fork 2
/
Handout.tex
89 lines (76 loc) · 1.95 KB
/
Handout.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
\documentclass[12pt]{article}
\usepackage{graphicx}
\usepackage{kotex}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{mathtools}
\usepackage{geometry}
\usepackage{amsthm}
\usepackage{pgfplots}
\usepackage{graphicx}
\usepackage{tikz}
\usepackage{xcolor}
\pgfplotsset{compat=1.7}
\pgfmathdeclarefunction{gauss}{2}{\pgfmathparse{1/(#2*sqrt(2*pi))*exp(-((x-#1)^2)/(2*#2^2))}%
}
\graphicspath{ {./images/} }
\geometry{
top = 30mm,
left = 25mm,
right = 25mm,
bottom = 30mm
}
\geometry{a4paper}
\usepackage{hyperref}
\hypersetup{
% hidelinks,
colorlinks=true,
linkcolor=black,
unicode=true,
urlcolor=blue,
citecolor=blue,
}
\renewcommand{\baselinestretch}{1.4}
\theoremstyle{definition}
\newtheorem{theorem}{\sffamily 정리}[section]
\theoremstyle{definition}
\newtheorem{definition}[theorem]{\sffamily 정의}
\newtheorem{problem}[theorem]{\sffamily 연습문제}
\newcommand{\defn}[1]{\begin{definition}#1\end{definition}~}
\newcommand{\thm}[1]{\begin{theorem}#1\end{theorem}~}
\newcommand{\prob}[1]{\begin{problem}#1\end{problem}~}
\usepackage{titlesec}
\title{\textbf{Introductory Statistics}}
\author{Sungchan Yi}
\date{January 2019}
\titleformat*{\section}{\large\bfseries}
\newcommand{\p}[2]{_{#1}\text{P}_{#2}}
\newcommand{\ds}{\displaystyle}
\newcommand{\pr}{\text{P}}
\newcommand{\cndpr}[2]{\pr\!\left(#1\,|\,#2\right)}
\newcommand{\indep}{\mathrel{\!\perp \!\!\!\perp\!}}
\newcommand{\ex}{\mathbf{E}}
\newcommand{\var}{\mathbf{V}}
\newcommand{\bi}{\mathbf{B}}
\newcommand{\mc}[1]{\mathcal{#1}}
\newcommand{\mr}[1]{\mathrm{#1}}
\newcommand{\chisq}{\chi^2}
\renewcommand{\qed}{\hfill\ensuremath{\square}}
\begin{document}
\maketitle
\tableofcontents
\pagebreak
\input{./sec/01.tex}
\input{./sec/02.tex}
\input{./sec/03.tex}
\input{./sec/04.tex}
\input{./sec/05.tex}
\input{./sec/06.tex}
\input{./sec/07.tex}
\input{./sec/08.tex}
\input{./sec/09.tex}
\input{./sec/10.tex}
\input{./sec/11.tex}
\input{./sec/12.tex}
\end{document}