-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.tex
113 lines (94 loc) · 2.96 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
\documentclass[12pt,landscape,a4paper,fleqn]{extarticle}
\usepackage[utf8]{inputenc}
\usepackage[ngerman]{babel}
\usepackage{tikz}
\usetikzlibrary{shapes,positioning,arrows,fit,calc,graphs,graphs.standard}
\usepackage[nosf]{kpfonts}
\usepackage[t1]{sourcesanspro}
%\usepackage[lf]{MyriadPro}
%\usepackage[lf,minionint]{MinionPro}
\usepackage{multicol}
\usepackage{wrapfig}
\usepackage[top=0mm,bottom=3mm,left=1mm,right=1mm]{geometry}
\usepackage[framemethod=tikz]{mdframed}
\usepackage{microtype}
\usepackage{mathtools}
\usepackage{ccicons}
\usepackage{hyperref}
\usepackage{enumitem}
\usepackage{amsmath, amssymb}
%% Special characters for number sets, e.g. real or complex numbers.
\newcommand{\C}{\mathbb{C}}
\newcommand{\K}{\mathbb{K}}
\newcommand{\N}{\mathbb{N}}
\newcommand{\Q}{\mathbb{Q}}
\newcommand{\R}{\mathbb{R}}
\newcommand{\Z}{\mathbb{Z}}
\newcommand{\X}{\mathbb{X}}
\renewcommand{\P}{\mathbb{P}}
\newcommand{\No}{\mathcal{N}}
\newcommand{\br}{\par\medskip\noindent}
\newcommand{\E}{\mathbb{E}}
% \newcommand{\P}{\mathbb{P}}
\newcommand{\Oh}{\mathcal{O}}
% \newcommand{\vphi}{\varphi}
% \newcommand{\veps}{\varepsilon}
\newcommand{\bd}{\textbf}
\newcommand{\equi}{\Leftrightarrow}
\newcommand{\imp}{\Rightarrow}
\newcommand{\emp}{\varnothing}
\newcommand{\subs}{\subseteq}
\newcommand{\ol}{\overline}
\newcommand{\ra}{\rangle}
\newcommand{\la}{\langle}
\newcommand{\ox}{\otimes}
\newcommand*\dx{\mathop{}\!\mathrm{d}x}
\newcommand*\dy{\mathop{}\!\mathrm{d}y}
\newcommand*\dz{\mathop{}\!\mathrm{d}z}
\DeclareMathOperator*{\argmax}{arg\,max}
\DeclareMathOperator*{\argmin}{arg\,min}
\DeclareMathOperator*{\vol}{vol}
\DeclareMathOperator*{\Mat}{Mat}
\let\bar\overline
\definecolor{myblue}{cmyk}{1,.72,0,.38}
\definecolor{myorange}{cmyk}{0,0.5,1,0}
\pgfdeclarelayer{background}
\pgfsetlayers{background,main}
\everymath\expandafter{\the\everymath \color{myblue}}
\everydisplay\expandafter{\the\everydisplay \color{myblue}}
\renewcommand{\baselinestretch}{.8}
\pagestyle{empty}
\global\mdfdefinestyle{header}{%
linecolor=gray,linewidth=1pt,%
leftmargin=0mm,rightmargin=0mm,skipbelow=0mm,skipabove=0mm,
}
\makeatletter
\renewcommand{\section}{\@startsection{section}{1}{0mm}%
{0pt}%
{0.5pt}%x
{\color{purple}\sffamily\small\bfseries}}
\renewcommand{\subsection}{\@startsection{subsection}{1}{0mm}%
{0pt}%
{0.1pt}%x
{\sffamily\bfseries}}
\makeatother
\setlength{\parindent}{0pt}
\newcommand{\red}[1]{\textcolor{red}{#1}}
\newcommand\iid{\stackrel{\mathclap{\normalfont\mbox{\tiny{iid}}}}{=}}
\begin{document}
\small
\begin{multicols*}{4}
\input{Important}
\input{Regression}
\input{Classification}
\input{Kernels}
\input{NeuralNetworks}
\input{Clustering}
\input{DimensionReduction}
\input{ProbabilityModeling}
\input{DecisionTheory}
\input{Generative}
\input{Latent}
\input{GANs}
\end{multicols*}
\end{document}