-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathkatex_snippets.json
More file actions
203 lines (179 loc) · 4.08 KB
/
katex_snippets.json
File metadata and controls
203 lines (179 loc) · 4.08 KB
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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
{
"()": {
"prefix": "lr",
"body": [
"\\left\\(","\t$0","\\right\\)"
],
"description": "LaTeX scalable parentheses, wrap"
},
"[]": {
"prefix": "LR",
"body": [
"\\left\\[","\t$0","\\right\\]"
],
"description": "LaTeX scalable brackets, wrap"
},
"math-block": {
"prefix": "math",
"body": [
"```math",
"\t$0",
"```"
],
"description": "KaTeX math block"
},
"$-symbol": {
"prefix": "usd",
"body": ["\\text{\\$}$0"],
"description": "US Dollar symbol"
},
"euro-symbol": {
"prefix": "eur",
"body": ["\\text{€}$0"],
"description": "Euro symbol"
},
"won-symbol": {
"prefix": "krw",
"body": ["\\text{₩}$0"],
"description": "Korean Won symbol"
},
"yen-symbol": {
"prefix": "jpy",
"body": ["\\text{¥}$0"],
"description": "Japanese Yen symbol"
},
"pound-symbol": {
"prefix": "gbp",
"body": ["\\text{£}$0"],
"description": "British Pound symbol"
},
"yuan-symbol": {
"prefix": "cny",
"body": ["\\text{¥}$0"],
"description": "Chinese Yuan symbol"
},
"rupee-symbol": {
"prefix": "inr",
"body": ["\\text{₹}$0"],
"description": "Indian Rupee symbol"
},
"dfrac": {
"prefix": "frac",
"body": [
"\\dfrac{$0}{$1}"
],
"description": "Insert LaTeX dfrac"
},
"therefore-symbol": {
"prefix": "therefore",
"body": ["\\therefore $0"],
"description": "Insert LaTeX therefore symbol"
},
"subscript": {
"prefix": "_",
"body": ["_{${0}}"],
"description": "Insert LaTeX subscript"
},
"superscript": {
"prefix": "^",
"body": ["^{${0}}"],
"description": "Insert LaTeX superscript"
},
"to-right": {
"prefix": "rightarrow",
"body": ["\\rightarrow $0"],
"description": "Insert LaTeX right arrow"
},
"to-Right": {
"prefix": "Rightarrow",
"body": ["\\Rightarrow $0"],
"description": "Insert LaTeX double right arrow"
},
"to-left": {
"prefix": "leftarrow",
"body": ["\\leftarrow $0"],
"description": "Insert LaTeX left arrow"
},
"to-Left": {
"prefix": "Leftarrow",
"body": ["\\Leftarrow $0"],
"description": "Insert LaTeX double left arrow"
},
"up-arrow": {
"prefix": "uparrow",
"body": ["\\uparrow $0"],
"description": "Insert LaTeX up arrow"
},
"Up-arrow": {
"prefix": "Uparrow",
"body": ["\\Uparrow $0"],
"description": "Insert LaTeX double up arrow"
},
"down-arrow": {
"prefix": "downarrow",
"body": ["\\downarrow $0"],
"description": "Insert LaTeX down arrow"
},
"Down-arrow": {
"prefix": "Downarrow",
"body": ["\\Downarrow $0"],
"description": "Insert LaTeX double down arrow"
},
"dot": {
"prefix": "dot",
"body": ["\\dot{$0}"],
"description": "Insert LaTeX \\dot{}"
},
"cdot": {
"prefix": "cdot",
"body": ["\\cdot $0"],
"description": "Insert LaTeX \\cdot"
},
"times": {
"prefix": "times",
"body": ["\\times $0"],
"description": "Insert LaTeX \\times"
},
"overline": {
"prefix": "overline",
"body": ["\\overline{$0}"],
"description": "Insert LaTeX \\overline{}"
},
"oplus": {
"prefix": "oplus",
"body": ["\\oplus $0"],
"description": "Insert LaTeX \\oplus"
},
"ominus": {
"prefix": "ominus",
"body": ["\\ominus $0"],
"description": "Insert LaTeX \\ominus"
},
"mu-symbol": {
"prefix": "mu",
"body": ["\\mu $0"],
"description": "Insert Greek letter mu"
},
"pi-symbol": {
"prefix": "pi",
"body": ["\\pi $0"],
"description": "Insert Greek letter pi"
},
"eta-symbol": {
"prefix": "eta",
"body": ["\\eta $0"],
"description": "Insert Greek letter eta"
},
"forall": {
"prefix": "forall",
"body": ["\\forall $0"],
"description": "Insert LaTeX forall"
},
"sim-tilde": {
"prefix": "sim",
"body": [
"\\sim"
],
"description": "LaTeX ~ (sim) symbol"
}
}