forked from szcf-weiya/ESL-CN
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmathjax.js
112 lines (102 loc) · 3.05 KB
/
mathjax.js
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
window.MathJax = {
showMathMenu: false,
tex2jax: {
inlineMath: [['$','$'], ['\\(','\\)']],
processEscapes:true
},
TeX: {
Macros: {
A: "{\\mathbf{A}}",
B: "{\\mathbf{B}}",
C: "{\\mathbf{C}}",
D: "{\\mathbf{D}}",
H: "{\\mathbf{H}}",
K: "{\\mathbf{K}}",
L: "{\\mathbf{L}}",
M: "{\\mathbf{M}}",
N: "{\\mathbf{N}}",
R: "{\\mathbf{R}}",
IR: "{\\mathrm{I\\!R}}",
S: "{\\mathbf{S}}",
I: "{\\mathbf{I}}",
J: "{\\mathbf{J}}",
X: "{\\mathbf{X}}",
Y: "{\\mathbf{Y}}",
Z: "{\\mathbf{Z}}",
U: "{\\mathbf{U}}",
V: "{\\mathbf{V}}",
W: "{\\mathbf{W}}",
y: "{\\mathbf{y}}",
f: "{\\mathbf{f}}",
x: "{\\mathbf{x}}",
z: "{\\mathbf{z}}",
u: "{\\mathbf{u}}",
v: "{\\mathbf{v}}",
b: "{\\mathbf{b}}",
p: "{\\mathbf{p}}",
k: "{\\mathbf{k}}",
bbZ: "{\\mathbb{Z}}",
bbE: "{\\mathbb{E}}",
bbR: "{\\mathbb{R}}",
calC: "{{\\cal{C}}}",
calS: "{{\\cal{S}}}",
calI: "{{\\cal{I}}}",
cC: "{{\\cal{C}}}",
cD: "{{\\cal{D}}}",
cS: "{\\cal{S}}",
cF: "{\\cal{F}}",
cM: "{\\cal{M}}",
cK: "{\\cal{K}}",
LOG: "{\\mathrm{log}}",
log: "{\\mathrm{log}}",
EPE: "{\\mathrm{EPE}}",
MSE: "{\\mathrm{MSE}}",
E: "{\\mathrm{E}}",
1: "{\\boldsymbol 1}",
0: "{\\boldsymbol 0}",
Cov: "{\\mathrm{Cov}}",
cov: "{\\mathrm{cov}}",
CV: "{\\mathrm{CV}}",
Var: "{\\mathrm{Var}}",
Bias: "{\\mathrm{Bias}}",
bias: "{\\mathrm{bias}}",
se: "{\\mathrm{se}}",
det: "{\\mathrm{det}\\;}",
cosh: "{\\mathrm{cosh}\\;}",
tanh: "{\\mathrm{tanh}}",
arg: "{\\mathrm{arg}\\;}",
RSS: "{\\mathrm{RSS}}",
PRSS: "{\\mathrm{PRSS}}",
argmin: "{\\mathrm{argmin}}",
Ave: "{\\mathrm{Ave}}",
median: "{\\mathrm{median}}",
card: "{\\mathrm{card}}",
Dev: "{\\mathrm{Dev}}",
null: "{\\mathrm{null}}",
inf: "{\\mathrm{inf}}",
sign: "{\\mathrm{sign}}",
df: "{\\mathrm{df}}",
tr: "{\\mathrm{tr}}",
Err: "{\\mathrm{Err}}",
err: "{\\mathrm{err}}",
logit: "{\\mathrm{logit}}",
loglik: "{\\mathrm{loglik}}",
probit: "{\\mathrm{probit}}",
trace: "{\\mathrm{trace}}",
diag: "{\\mathrm{diag}}",
st: "{\\mathrm{subject\\; to}\\;}",
pr: "{\\mathrm{pr}}",
Pr: "{\\mathrm{Pr}}",
pa: "{\\mathrm{pa}}",
bsigma: "{\\boldsymbol\\Sigma}",
bomega: "{\\boldsymbol\\Omega}",
balpha: "{\\boldsymbol\\alpha}",
bbeta: "{\\boldsymbol\\beta}",
bmu: "{\\boldsymbol\\mu}",
def: "{\\;\\overset{\\mathrm{def}}{=}\\;}",
ind: "{\\perp \\!\\!\\! \\perp}"
},
entensions: ["color.js"],
equationNumbers: { autoNumber: "AMS" }
}
};