-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path_symbols.qmd
63 lines (50 loc) · 1.6 KB
/
_symbols.qmd
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
<!--- {{< include ../other/_symbols.qmd >}} --->
\usepackage{xcolor}
\usepackage{soul}
\usepackage{amsmath, amsfonts}
\newcommand{\const}{\text{const}}
\newcommand{\lp}{\left(}
\newcommand{\rp}{\right)}
\newcommand{\lb}{\left[}
\newcommand{\rb}{\right]}
\newcommand*\circled[1]{\tikz[baseline=(char.base)]{
\node[shape=circle,draw,inner sep=2pt] (char) {#1};}}
<!--- Logic --->
\newcommand{\xor}{\,\text{XOR}\,}
<!--- Number sets--->
\newcommand{\setN}{\mathbb{N}}
\newcommand{\setNo}{\mathbb{N}_{0}}
\newcommand{\setZ}{\mathbb{Z}}
\newcommand{\setQ}{\mathbb{Q}}
\newcommand{\setR}{\mathbb{R}}
\newcommand{\setC}{\mathbb{C}}
<!--- Linear Algebra --->
\newcommand{\vm}[1]{\mathbf{#1}} <!--- vectors and matrices --->
\newcommand{\T}{\top} <!--- transposed matrix --->
<!--- Probability, Random Vars --->
\newcommand{\Falg}{\mathcal{F}}
\newcommand{\prob}{\mathbb{P}}
\newcommand{\expect}{\mathbb{E}}
\newcommand{\disp}{\mathbb{D}}
\newcommand{\var}{\text{var}}
\newcommand{\cov}{\text{cov}}
\newcommand{\cor}{\text{cor}}
\newcommand{\se}{\text{se}}
\newcommand{\sd}{\text{sd}}
\newcommand{\iid}{\text{i.i.d}}
\newsavebox{\MBox}
\newcommand{\Cline}[2][red]{{\sbox\MBox{$#2$}%
\rlap{\usebox\MBox}\color{#1}\rule[-1.2\dp\MBox]{\wd\MBox}{0.5pt}}}
<!--- Distributions --->
\newcommand{\norm}{\mathcal{N}}
<!--- Other --->
\newcommand{\def}{\overset{\text{def}}{=}}
\newcommand{\sgn}{\text{sgn}}
<!--- Trig --->
\usepackage{amsmath}
\DeclareMathOperator\artanh{artanh}
<!--- Stats --->
\newcommand{\median}{\text{median}}
\newcommand{\mean}{\mathbb{M}}
\newcommand{\skew}{\mathrm{skew}}
\newcommand{\kurt}{\mathrm{kurt}}