keyboard-ui-profiles 0.0.19 → 0.0.21
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/Organisms/ReviewComponent/ReviewPresenter.js +0 -1
- package/dist/components/Organisms/ReviewComponent/ReviewPresenter.js.map +1 -1
- package/dist/components/Organisms/StudentEditor/StudentEditor.stories.js +1 -1
- package/dist/components/Organisms/StudentEditor/StudentEditor.stories.js.map +1 -1
- package/dist/components/Organisms/StudentEditor/components/MathModalSME.js +12 -1
- package/dist/components/Organisms/StudentEditor/components/MathModalSME.js.map +1 -1
- package/dist/components/Organisms/StudentEditor/components/mathModalStyles.d.ts +1 -1
- package/dist/components/Organisms/StudentEditor/components/mathModalStyles.js +20 -0
- package/dist/components/Organisms/StudentEditor/components/mathModalStyles.js.map +1 -1
- package/dist/components/Organisms/StudentEditor/utils/keyboard-config.d.ts +161 -173
- package/dist/components/Organisms/StudentEditor/utils/keyboard-config.js +10 -17
- package/dist/components/Organisms/StudentEditor/utils/keyboard-config.js.map +1 -1
- package/dist/components/Organisms/StudentEditor/utils/keyboardConstants.d.ts +88 -88
- package/dist/components/Organisms/StudentEditor/utils/keyboardConstants.js +88 -88
- package/dist/components/Organisms/StudentEditor/utils/keyboardConstants.js.map +1 -1
- package/package.json +1 -1
|
@@ -1,4 +1,25 @@
|
|
|
1
1
|
export const numericKeyboard: (({
|
|
2
|
+
readonly label: "0";
|
|
3
|
+
readonly value: "0";
|
|
4
|
+
} | {
|
|
5
|
+
readonly label: "1";
|
|
6
|
+
readonly value: "1";
|
|
7
|
+
} | {
|
|
8
|
+
readonly label: "2";
|
|
9
|
+
readonly value: "2";
|
|
10
|
+
} | {
|
|
11
|
+
readonly label: "3";
|
|
12
|
+
readonly value: "3";
|
|
13
|
+
} | {
|
|
14
|
+
readonly label: "4";
|
|
15
|
+
readonly value: "4";
|
|
16
|
+
} | {
|
|
17
|
+
readonly label: "5";
|
|
18
|
+
readonly value: "5";
|
|
19
|
+
} | {
|
|
20
|
+
readonly label: "6";
|
|
21
|
+
readonly value: "6";
|
|
22
|
+
} | {
|
|
2
23
|
readonly label: "7";
|
|
3
24
|
readonly value: "7";
|
|
4
25
|
} | {
|
|
@@ -7,26 +28,12 @@ export const numericKeyboard: (({
|
|
|
7
28
|
} | {
|
|
8
29
|
readonly label: "9";
|
|
9
30
|
readonly value: "9";
|
|
10
|
-
} | {
|
|
31
|
+
})[] | ({
|
|
11
32
|
readonly label: "+";
|
|
12
33
|
readonly value: "+";
|
|
13
34
|
} | {
|
|
14
35
|
readonly label: "-";
|
|
15
36
|
readonly value: "-";
|
|
16
|
-
} | {
|
|
17
|
-
readonly label: "\\%";
|
|
18
|
-
readonly value: "\\%";
|
|
19
|
-
readonly isShortcut: true;
|
|
20
|
-
readonly description: "Percent symbol";
|
|
21
|
-
})[] | ({
|
|
22
|
-
readonly label: "4";
|
|
23
|
-
readonly value: "4";
|
|
24
|
-
} | {
|
|
25
|
-
readonly label: "5";
|
|
26
|
-
readonly value: "5";
|
|
27
|
-
} | {
|
|
28
|
-
readonly label: "6";
|
|
29
|
-
readonly value: "6";
|
|
30
37
|
} | {
|
|
31
38
|
readonly label: "\\times";
|
|
32
39
|
readonly value: "\\times";
|
|
@@ -39,19 +46,15 @@ export const numericKeyboard: (({
|
|
|
39
46
|
readonly description: "Division";
|
|
40
47
|
} | {
|
|
41
48
|
readonly label: "\\frac{\\Box}{\\Box}";
|
|
42
|
-
readonly value: "\\frac{
|
|
49
|
+
readonly value: "\\frac{\\Box}{\\Box}";
|
|
43
50
|
readonly isShortcut: true;
|
|
44
51
|
readonly description: "Fraction";
|
|
45
|
-
})[] | ({
|
|
46
|
-
readonly label: "1";
|
|
47
|
-
readonly value: "1";
|
|
48
|
-
} | {
|
|
49
|
-
readonly label: "2";
|
|
50
|
-
readonly value: "2";
|
|
51
|
-
} | {
|
|
52
|
-
readonly label: "3";
|
|
53
|
-
readonly value: "3";
|
|
54
52
|
} | {
|
|
53
|
+
readonly label: "\\%";
|
|
54
|
+
readonly value: "\\%";
|
|
55
|
+
readonly isShortcut: true;
|
|
56
|
+
readonly description: "Percent symbol";
|
|
57
|
+
})[] | ({
|
|
55
58
|
readonly label: "(";
|
|
56
59
|
readonly value: "(";
|
|
57
60
|
} | {
|
|
@@ -63,9 +66,6 @@ export const numericKeyboard: (({
|
|
|
63
66
|
readonly isShortcut: true;
|
|
64
67
|
readonly description: "Degree symbol";
|
|
65
68
|
})[] | ({
|
|
66
|
-
readonly label: "0";
|
|
67
|
-
readonly value: "0";
|
|
68
|
-
} | {
|
|
69
69
|
readonly label: ".";
|
|
70
70
|
readonly value: ".";
|
|
71
71
|
} | {
|
|
@@ -98,24 +98,20 @@ export const numericKeyboard: (({
|
|
|
98
98
|
readonly description: "Congruent to";
|
|
99
99
|
} | {
|
|
100
100
|
readonly label: "\\{\\Box\\}";
|
|
101
|
-
readonly value: "\\{\\}";
|
|
101
|
+
readonly value: "\\{\\Box\\}";
|
|
102
102
|
readonly isShortcut: true;
|
|
103
103
|
readonly description: "Curly braces";
|
|
104
104
|
} | {
|
|
105
105
|
readonly label: "[ \\Box ]";
|
|
106
|
-
readonly value: "[
|
|
106
|
+
readonly value: "[ \\Box ]";
|
|
107
107
|
readonly isShortcut: true;
|
|
108
108
|
readonly description: "Square brackets";
|
|
109
109
|
} | {
|
|
110
|
-
readonly label: "
|
|
111
|
-
readonly value: "
|
|
110
|
+
readonly label: "⟦\\Box⟧";
|
|
111
|
+
readonly value: "⟦\\Box⟧";
|
|
112
112
|
readonly isShortcut: true;
|
|
113
113
|
readonly description: "Double brackets";
|
|
114
114
|
} | {
|
|
115
|
-
readonly label: "\\backslash";
|
|
116
|
-
readonly value: "\\";
|
|
117
|
-
readonly mode: "keystore";
|
|
118
|
-
})[] | ({
|
|
119
115
|
readonly label: "\\text{\\{}";
|
|
120
116
|
readonly value: "{";
|
|
121
117
|
readonly mode: "keystore";
|
|
@@ -124,33 +120,11 @@ export const numericKeyboard: (({
|
|
|
124
120
|
readonly value: "}";
|
|
125
121
|
readonly mode: "keystore";
|
|
126
122
|
} | {
|
|
127
|
-
readonly label: "\\
|
|
128
|
-
readonly value: "
|
|
129
|
-
|
|
130
|
-
readonly label: "\\text{⏎}";
|
|
131
|
-
readonly value: "enter";
|
|
132
|
-
} | {
|
|
133
|
-
readonly label: "";
|
|
134
|
-
readonly value: "";
|
|
123
|
+
readonly label: "\\backslash";
|
|
124
|
+
readonly value: "\\";
|
|
125
|
+
readonly mode: "keystore";
|
|
135
126
|
})[])[];
|
|
136
127
|
export const symbolsKeyboard: (({
|
|
137
|
-
readonly label: "\\text{\\{}";
|
|
138
|
-
readonly value: "{";
|
|
139
|
-
readonly mode: "keystore";
|
|
140
|
-
} | {
|
|
141
|
-
readonly label: "\\text{\\}}";
|
|
142
|
-
readonly value: "}";
|
|
143
|
-
readonly mode: "keystore";
|
|
144
|
-
} | {
|
|
145
|
-
readonly label: "\\text{⌫}";
|
|
146
|
-
readonly value: "backspace";
|
|
147
|
-
} | {
|
|
148
|
-
readonly label: "\\text{⏎}";
|
|
149
|
-
readonly value: "enter";
|
|
150
|
-
} | {
|
|
151
|
-
readonly label: "";
|
|
152
|
-
readonly value: "";
|
|
153
|
-
})[] | ({
|
|
154
128
|
readonly label: "+";
|
|
155
129
|
readonly value: "+";
|
|
156
130
|
} | {
|
|
@@ -158,22 +132,22 @@ export const symbolsKeyboard: (({
|
|
|
158
132
|
readonly value: "-";
|
|
159
133
|
} | {
|
|
160
134
|
readonly label: "\\sqrt{\\square}";
|
|
161
|
-
readonly value: "\\sqrt{
|
|
135
|
+
readonly value: "\\sqrt{\\Box}";
|
|
162
136
|
readonly isShortcut: true;
|
|
163
137
|
readonly description: "Square root";
|
|
164
138
|
} | {
|
|
165
139
|
readonly label: "\\sqrt[\\Box]{\\square}";
|
|
166
|
-
readonly value: "\\sqrt[
|
|
140
|
+
readonly value: "\\sqrt[\\Box]{\\Box}";
|
|
167
141
|
readonly isShortcut: true;
|
|
168
142
|
readonly description: "nth root";
|
|
169
143
|
} | {
|
|
170
144
|
readonly label: "\\square^2";
|
|
171
|
-
readonly value: "
|
|
145
|
+
readonly value: "\\Box^2";
|
|
172
146
|
readonly isShortcut: true;
|
|
173
147
|
readonly description: "Square/Power of 2";
|
|
174
148
|
} | {
|
|
175
149
|
readonly label: "\\square^\\Box";
|
|
176
|
-
readonly value: "
|
|
150
|
+
readonly value: "\\Box^{\\Box}";
|
|
177
151
|
readonly isShortcut: true;
|
|
178
152
|
readonly description: "Power/Superscript";
|
|
179
153
|
})[] | ({
|
|
@@ -188,7 +162,7 @@ export const symbolsKeyboard: (({
|
|
|
188
162
|
readonly description: "Division";
|
|
189
163
|
} | {
|
|
190
164
|
readonly label: "\\frac{\\square}{\\square}";
|
|
191
|
-
readonly value: "\\frac{
|
|
165
|
+
readonly value: "\\frac{\\Box}{\\Box}";
|
|
192
166
|
readonly isShortcut: true;
|
|
193
167
|
readonly description: "Fraction";
|
|
194
168
|
} | {
|
|
@@ -198,7 +172,7 @@ export const symbolsKeyboard: (({
|
|
|
198
172
|
readonly description: "Logarithm";
|
|
199
173
|
} | {
|
|
200
174
|
readonly label: "\\text{log}_\\Box";
|
|
201
|
-
readonly value: "\\text{log}
|
|
175
|
+
readonly value: "\\text{log}_\\Box";
|
|
202
176
|
readonly isShortcut: true;
|
|
203
177
|
readonly description: "Logarithm base x";
|
|
204
178
|
} | {
|
|
@@ -279,6 +253,23 @@ export const symbolsKeyboard: (({
|
|
|
279
253
|
} | {
|
|
280
254
|
readonly label: "";
|
|
281
255
|
readonly value: "";
|
|
256
|
+
})[] | ({
|
|
257
|
+
readonly label: "\\text{\\{}";
|
|
258
|
+
readonly value: "{";
|
|
259
|
+
readonly mode: "keystore";
|
|
260
|
+
} | {
|
|
261
|
+
readonly label: "\\text{\\}}";
|
|
262
|
+
readonly value: "}";
|
|
263
|
+
readonly mode: "keystore";
|
|
264
|
+
} | {
|
|
265
|
+
readonly label: "\\text{⌫}";
|
|
266
|
+
readonly value: "backspace";
|
|
267
|
+
} | {
|
|
268
|
+
readonly label: "\\text{⏎}";
|
|
269
|
+
readonly value: "enter";
|
|
270
|
+
} | {
|
|
271
|
+
readonly label: "";
|
|
272
|
+
readonly value: "";
|
|
282
273
|
})[])[];
|
|
283
274
|
export const trigKeyboard: (({
|
|
284
275
|
readonly label: "\\text{\\{}";
|
|
@@ -305,22 +296,22 @@ export const trigKeyboard: (({
|
|
|
305
296
|
readonly value: "-";
|
|
306
297
|
} | {
|
|
307
298
|
readonly label: "\\frac{\\square}{\\square}";
|
|
308
|
-
readonly value: "\\frac{
|
|
299
|
+
readonly value: "\\frac{\\Box}{\\Box}";
|
|
309
300
|
readonly isShortcut: true;
|
|
310
301
|
readonly description: "Fraction";
|
|
311
302
|
} | {
|
|
312
303
|
readonly label: "\\sin (\\Box)";
|
|
313
|
-
readonly value: "\\sin ()";
|
|
304
|
+
readonly value: "\\sin (\\Box)";
|
|
314
305
|
readonly isShortcut: true;
|
|
315
306
|
readonly description: "Sine function with parentheses";
|
|
316
307
|
} | {
|
|
317
308
|
readonly label: "\\cos (\\Box)";
|
|
318
|
-
readonly value: "\\cos ()";
|
|
309
|
+
readonly value: "\\cos (\\Box)";
|
|
319
310
|
readonly isShortcut: true;
|
|
320
311
|
readonly description: "Cosine function with parentheses";
|
|
321
312
|
} | {
|
|
322
313
|
readonly label: "\\tan (\\Box)";
|
|
323
|
-
readonly value: "\\tan ()";
|
|
314
|
+
readonly value: "\\tan (\\Box)";
|
|
324
315
|
readonly isShortcut: true;
|
|
325
316
|
readonly description: "Tangent function with parentheses";
|
|
326
317
|
})[] | ({
|
|
@@ -335,22 +326,22 @@ export const trigKeyboard: (({
|
|
|
335
326
|
readonly description: "Division";
|
|
336
327
|
} | {
|
|
337
328
|
readonly label: "\\sin^{-1} (\\Box)";
|
|
338
|
-
readonly value: "\\sin^{-1} ()";
|
|
329
|
+
readonly value: "\\sin^{-1} (\\Box)";
|
|
339
330
|
readonly isShortcut: true;
|
|
340
331
|
readonly description: "Inverse sine (arcsine) with parentheses";
|
|
341
332
|
} | {
|
|
342
333
|
readonly label: "\\cos^{-1} (\\Box)";
|
|
343
|
-
readonly value: "\\cos^{-1} ()";
|
|
334
|
+
readonly value: "\\cos^{-1} (\\Box)";
|
|
344
335
|
readonly isShortcut: true;
|
|
345
336
|
readonly description: "Inverse cosine (arccosine) with parentheses";
|
|
346
337
|
} | {
|
|
347
338
|
readonly label: "\\tan^{-1} (\\Box)";
|
|
348
|
-
readonly value: "\\tan^{-1} ()";
|
|
339
|
+
readonly value: "\\tan^{-1} (\\Box)";
|
|
349
340
|
readonly isShortcut: true;
|
|
350
341
|
readonly description: "Inverse tangent (arctangent)";
|
|
351
342
|
} | {
|
|
352
343
|
readonly label: "∠(\\Box)";
|
|
353
|
-
readonly value: "\\angle ()";
|
|
344
|
+
readonly value: "\\angle (\\Box)";
|
|
354
345
|
readonly isShortcut: true;
|
|
355
346
|
readonly description: "Angle symbol with parentheses";
|
|
356
347
|
})[] | ({
|
|
@@ -361,17 +352,17 @@ export const trigKeyboard: (({
|
|
|
361
352
|
readonly value: ")";
|
|
362
353
|
} | {
|
|
363
354
|
readonly label: "\\sec (\\Box)";
|
|
364
|
-
readonly value: "\\sec ()";
|
|
355
|
+
readonly value: "\\sec (\\Box)";
|
|
365
356
|
readonly isShortcut: true;
|
|
366
357
|
readonly description: "Secant function with parentheses";
|
|
367
358
|
} | {
|
|
368
359
|
readonly label: "\\csc (\\Box)";
|
|
369
|
-
readonly value: "\\csc ()";
|
|
360
|
+
readonly value: "\\csc (\\Box)";
|
|
370
361
|
readonly isShortcut: true;
|
|
371
362
|
readonly description: "Cosecant function with parentheses";
|
|
372
363
|
} | {
|
|
373
364
|
readonly label: "\\cot (\\Box)";
|
|
374
|
-
readonly value: "\\cot ()";
|
|
365
|
+
readonly value: "\\cot (\\Box)";
|
|
375
366
|
readonly isShortcut: true;
|
|
376
367
|
readonly description: "Cotangent function with parentheses";
|
|
377
368
|
} | {
|
|
@@ -403,7 +394,7 @@ export const variablesKeyboard: (({
|
|
|
403
394
|
readonly value: "-";
|
|
404
395
|
} | {
|
|
405
396
|
readonly label: "\\frac{\\square}{\\square}";
|
|
406
|
-
readonly value: "\\frac{
|
|
397
|
+
readonly value: "\\frac{\\Box}{\\Box}";
|
|
407
398
|
readonly isShortcut: true;
|
|
408
399
|
readonly description: "Fraction";
|
|
409
400
|
} | {
|
|
@@ -547,16 +538,16 @@ export const chemBasicKeyboard: (({
|
|
|
547
538
|
readonly value: ")";
|
|
548
539
|
} | {
|
|
549
540
|
readonly label: "(\\Box)_{s}";
|
|
550
|
-
readonly value: "()_{s}";
|
|
541
|
+
readonly value: "(\\Box)_{s}";
|
|
551
542
|
} | {
|
|
552
543
|
readonly label: "(\\Box)_{l}";
|
|
553
|
-
readonly value: "()_{l}";
|
|
544
|
+
readonly value: "(\\Box)_{l}";
|
|
554
545
|
} | {
|
|
555
546
|
readonly label: "(\\Box)_{g}";
|
|
556
|
-
readonly value: "()_{g}";
|
|
547
|
+
readonly value: "(\\Box)_{g}";
|
|
557
548
|
} | {
|
|
558
549
|
readonly label: "(\\Box)_{aq}";
|
|
559
|
-
readonly value: "()_{aq}";
|
|
550
|
+
readonly value: "(\\Box)_{aq}";
|
|
560
551
|
})[] | ({
|
|
561
552
|
readonly label: "\\Box_\\Box";
|
|
562
553
|
readonly value: "{\\Box}_{\\Box}";
|
|
@@ -1215,42 +1206,42 @@ export const generalKeyboardMobile: (({
|
|
|
1215
1206
|
})[])[];
|
|
1216
1207
|
export const universalKeyboard: (({
|
|
1217
1208
|
readonly label: "\\frac{\\Box}{\\Box}";
|
|
1218
|
-
readonly value: "\\frac{
|
|
1209
|
+
readonly value: "\\frac{\\Box}{\\Box}";
|
|
1219
1210
|
readonly isShortcut: true;
|
|
1220
1211
|
readonly description: "Fraction";
|
|
1221
1212
|
} | {
|
|
1222
1213
|
readonly label: "\\sqrt{\\square}";
|
|
1223
|
-
readonly value: "\\sqrt{
|
|
1214
|
+
readonly value: "\\sqrt{\\Box}";
|
|
1224
1215
|
readonly isShortcut: true;
|
|
1225
1216
|
readonly description: "Square root";
|
|
1226
1217
|
} | {
|
|
1227
1218
|
readonly label: "\\sqrt[\\Box]{\\square}";
|
|
1228
|
-
readonly value: "\\sqrt[
|
|
1219
|
+
readonly value: "\\sqrt[\\Box]{\\Box}";
|
|
1229
1220
|
readonly isShortcut: true;
|
|
1230
1221
|
readonly description: "nth root";
|
|
1231
1222
|
} | {
|
|
1232
1223
|
readonly label: "\\square^\\Box";
|
|
1233
|
-
readonly value: "
|
|
1224
|
+
readonly value: "\\Box^{\\Box}";
|
|
1234
1225
|
readonly isShortcut: true;
|
|
1235
1226
|
readonly description: "Power/Superscript";
|
|
1236
1227
|
} | {
|
|
1237
1228
|
readonly label: "\\Box_\\Box";
|
|
1238
|
-
readonly value: "
|
|
1229
|
+
readonly value: "\\Box_{\\Box}";
|
|
1239
1230
|
readonly isShortcut: true;
|
|
1240
1231
|
readonly description: "Subscript";
|
|
1241
1232
|
} | {
|
|
1242
1233
|
readonly label: "(\\Box)";
|
|
1243
|
-
readonly value: "()";
|
|
1234
|
+
readonly value: "(\\Box)";
|
|
1244
1235
|
readonly isShortcut: true;
|
|
1245
1236
|
readonly description: "Round braces";
|
|
1246
1237
|
} | {
|
|
1247
1238
|
readonly label: "[ \\Box ]";
|
|
1248
|
-
readonly value: "[
|
|
1239
|
+
readonly value: "[ \\Box ]";
|
|
1249
1240
|
readonly isShortcut: true;
|
|
1250
1241
|
readonly description: "Square brackets";
|
|
1251
1242
|
})[] | ({
|
|
1252
1243
|
readonly label: "|\\Box|";
|
|
1253
|
-
readonly value: "|
|
|
1244
|
+
readonly value: "|\\Box|";
|
|
1254
1245
|
readonly isShortcut: true;
|
|
1255
1246
|
readonly description: "Absolute value";
|
|
1256
1247
|
} | {
|
|
@@ -1275,12 +1266,9 @@ export const universalKeyboard: (({
|
|
|
1275
1266
|
readonly description: "Because";
|
|
1276
1267
|
} | {
|
|
1277
1268
|
readonly label: "\\{\\Box\\}";
|
|
1278
|
-
readonly value: "\\{\\}";
|
|
1269
|
+
readonly value: "\\{\\Box\\}";
|
|
1279
1270
|
readonly isShortcut: true;
|
|
1280
1271
|
readonly description: "Curly braces";
|
|
1281
|
-
} | {
|
|
1282
|
-
readonly label: "";
|
|
1283
|
-
readonly value: "";
|
|
1284
1272
|
})[])[];
|
|
1285
1273
|
export { KEYBOARD_PROFILES } from "./keyboardConstants";
|
|
1286
1274
|
export const numbersSetsKeyboard: (({
|
|
@@ -1310,12 +1298,12 @@ export const numbersSetsKeyboard: (({
|
|
|
1310
1298
|
readonly description: "Subset or equal to";
|
|
1311
1299
|
} | {
|
|
1312
1300
|
readonly label: "\\Box\\frac{\\Box}{\\Box}";
|
|
1313
|
-
readonly value: "
|
|
1301
|
+
readonly value: "\\Box\\frac{\\Box}{\\Box}";
|
|
1314
1302
|
readonly isShortcut: true;
|
|
1315
1303
|
readonly description: "Mixed fraction";
|
|
1316
1304
|
} | {
|
|
1317
1305
|
readonly label: "\\frac{}{\\Box}";
|
|
1318
|
-
readonly value: "\\frac{}{
|
|
1306
|
+
readonly value: "\\frac{}{\\Box}";
|
|
1319
1307
|
readonly isShortcut: true;
|
|
1320
1308
|
readonly description: "Bottom fraction only";
|
|
1321
1309
|
})[] | ({
|
|
@@ -1345,53 +1333,53 @@ export const numbersSetsKeyboard: (({
|
|
|
1345
1333
|
readonly description: "Natural numbers";
|
|
1346
1334
|
} | {
|
|
1347
1335
|
readonly label: "[\\Box,\\Box]";
|
|
1348
|
-
readonly value: "[
|
|
1336
|
+
readonly value: "[\\Box,\\Box]";
|
|
1349
1337
|
readonly isShortcut: true;
|
|
1350
1338
|
readonly description: "Square brackets with 2 elements";
|
|
1351
1339
|
} | {
|
|
1352
1340
|
readonly label: "(\\Box,\\Box)";
|
|
1353
|
-
readonly value: "(
|
|
1341
|
+
readonly value: "(\\Box,\\Box)";
|
|
1354
1342
|
readonly isShortcut: true;
|
|
1355
1343
|
readonly description: "Round brackets with 2 elements";
|
|
1356
1344
|
})[])[];
|
|
1357
1345
|
export const algebraFinanceKeyboard: (({
|
|
1358
|
-
readonly label: "
|
|
1359
|
-
readonly value: "\\begin{bmatrix}
|
|
1346
|
+
readonly label: "matrix (2×2)";
|
|
1347
|
+
readonly value: "\\begin{bmatrix}\\Box&\\Box\\\\\\Box&\\Box\\end{bmatrix}";
|
|
1360
1348
|
readonly isShortcut: true;
|
|
1361
1349
|
readonly description: "Matrix with square brackets";
|
|
1362
1350
|
} | {
|
|
1363
1351
|
readonly label: "[\\Box]";
|
|
1364
|
-
readonly value: "[
|
|
1352
|
+
readonly value: "[\\Box]";
|
|
1365
1353
|
readonly isShortcut: true;
|
|
1366
1354
|
readonly description: "Square brackets";
|
|
1367
1355
|
} | {
|
|
1368
1356
|
readonly label: "\\log_\\Box (\\Box)";
|
|
1369
|
-
readonly value: "\\log_{} ()";
|
|
1357
|
+
readonly value: "\\log_{\\Box} (\\Box)";
|
|
1370
1358
|
readonly isShortcut: true;
|
|
1371
1359
|
readonly description: "Logarithm with subscript and parentheses";
|
|
1372
1360
|
} | {
|
|
1373
1361
|
readonly label: "\\ln (\\Box)";
|
|
1374
|
-
readonly value: "\\ln ()";
|
|
1362
|
+
readonly value: "\\ln (\\Box)";
|
|
1375
1363
|
readonly isShortcut: true;
|
|
1376
1364
|
readonly description: "Natural logarithm with parentheses";
|
|
1377
1365
|
} | {
|
|
1378
1366
|
readonly label: "\\sum_\\Box^\\Box (\\Box)";
|
|
1379
|
-
readonly value: "\\sum_
|
|
1367
|
+
readonly value: "\\sum_\\Box^\\Box (\\Box)";
|
|
1380
1368
|
readonly isShortcut: true;
|
|
1381
1369
|
readonly description: "Summation with parentheses";
|
|
1382
1370
|
} | {
|
|
1383
1371
|
readonly label: "\\prod_\\Box^\\Box (\\Box)";
|
|
1384
|
-
readonly value: "\\prod_
|
|
1372
|
+
readonly value: "\\prod_\\Box^\\Box (\\Box)";
|
|
1385
1373
|
readonly isShortcut: true;
|
|
1386
1374
|
readonly description: "Product with parentheses";
|
|
1387
1375
|
} | {
|
|
1388
1376
|
readonly label: "f(\\Box)";
|
|
1389
|
-
readonly value: "f()";
|
|
1377
|
+
readonly value: "f(\\Box)";
|
|
1390
1378
|
readonly isShortcut: true;
|
|
1391
1379
|
readonly description: "Function";
|
|
1392
1380
|
})[] | ({
|
|
1393
1381
|
readonly label: "|\\Box|";
|
|
1394
|
-
readonly value: "|
|
|
1382
|
+
readonly value: "|\\Box|";
|
|
1395
1383
|
readonly isShortcut: true;
|
|
1396
1384
|
readonly description: "Absolute value";
|
|
1397
1385
|
} | {
|
|
@@ -1416,7 +1404,7 @@ export const algebraFinanceKeyboard: (({
|
|
|
1416
1404
|
readonly description: "Percent symbol";
|
|
1417
1405
|
} | {
|
|
1418
1406
|
readonly label: "\\text{Rs.} (\\Box)";
|
|
1419
|
-
readonly value: "\\text{Rs.} ()";
|
|
1407
|
+
readonly value: "\\text{Rs.} (\\Box)";
|
|
1420
1408
|
readonly isShortcut: true;
|
|
1421
1409
|
readonly description: "Rupees symbol with parentheses";
|
|
1422
1410
|
} | {
|
|
@@ -1447,17 +1435,17 @@ export const geometryKeyboard: (({
|
|
|
1447
1435
|
readonly description: "Perpendicular to";
|
|
1448
1436
|
} | {
|
|
1449
1437
|
readonly label: "∠(\\Box)";
|
|
1450
|
-
readonly value: "\\angle ()";
|
|
1438
|
+
readonly value: "\\angle (\\Box)";
|
|
1451
1439
|
readonly isShortcut: true;
|
|
1452
1440
|
readonly description: "Angle symbol with parentheses";
|
|
1453
1441
|
} | {
|
|
1454
1442
|
readonly label: "\\triangle\\Box";
|
|
1455
|
-
readonly value: "\\triangle";
|
|
1443
|
+
readonly value: "\\triangle\\Box";
|
|
1456
1444
|
readonly isShortcut: true;
|
|
1457
1445
|
readonly description: "Triangle";
|
|
1458
1446
|
} | {
|
|
1459
1447
|
readonly label: "\\overline{\\Box}";
|
|
1460
|
-
readonly value: "\\overline{
|
|
1448
|
+
readonly value: "\\overline{\\Box}";
|
|
1461
1449
|
readonly isShortcut: true;
|
|
1462
1450
|
readonly description: "Line segment";
|
|
1463
1451
|
})[] | ({
|
|
@@ -1472,27 +1460,27 @@ export const geometryKeyboard: (({
|
|
|
1472
1460
|
readonly description: "Degree symbol";
|
|
1473
1461
|
} | {
|
|
1474
1462
|
readonly label: "\\overrightarrow{\\Box}";
|
|
1475
|
-
readonly value: "\\overrightarrow{
|
|
1463
|
+
readonly value: "\\overrightarrow{\\Box}";
|
|
1476
1464
|
readonly isShortcut: true;
|
|
1477
1465
|
readonly description: "Ray";
|
|
1478
1466
|
} | {
|
|
1479
1467
|
readonly label: "\\overleftrightarrow{\\Box}";
|
|
1480
|
-
readonly value: "\\overleftrightarrow{
|
|
1468
|
+
readonly value: "\\overleftrightarrow{\\Box}";
|
|
1481
1469
|
readonly isShortcut: true;
|
|
1482
1470
|
readonly description: "Line";
|
|
1483
1471
|
} | {
|
|
1484
1472
|
readonly label: "\\overset{\\frown}{\\Box\\Box}";
|
|
1485
|
-
readonly value: "\\overset{\\frown}{
|
|
1473
|
+
readonly value: "\\overset{\\frown}{\\Box\\Box}";
|
|
1486
1474
|
readonly isShortcut: true;
|
|
1487
1475
|
readonly description: "Arc";
|
|
1488
1476
|
} | {
|
|
1489
1477
|
readonly label: "(\\Box, \\Box)";
|
|
1490
|
-
readonly value: "(
|
|
1478
|
+
readonly value: "(\\Box, \\Box)";
|
|
1491
1479
|
readonly isShortcut: true;
|
|
1492
1480
|
readonly description: "Coordinate pair";
|
|
1493
1481
|
} | {
|
|
1494
1482
|
readonly label: "m = \\frac{\\Box - \\Box}{\\Box - \\Box}";
|
|
1495
|
-
readonly value: "m = \\frac{
|
|
1483
|
+
readonly value: "m = \\frac{\\Box - \\Box}{\\Box - \\Box}";
|
|
1496
1484
|
readonly isShortcut: true;
|
|
1497
1485
|
readonly description: "Slope formula";
|
|
1498
1486
|
})[])[];
|
|
@@ -1518,17 +1506,17 @@ export const coordinateGeometryKeyboard: (({
|
|
|
1518
1506
|
readonly description: "Perpendicular to";
|
|
1519
1507
|
} | {
|
|
1520
1508
|
readonly label: "∠(\\Box)";
|
|
1521
|
-
readonly value: "\\angle ()";
|
|
1509
|
+
readonly value: "\\angle (\\Box)";
|
|
1522
1510
|
readonly isShortcut: true;
|
|
1523
1511
|
readonly description: "Angle symbol with parentheses";
|
|
1524
1512
|
} | {
|
|
1525
1513
|
readonly label: "\\triangle\\Box";
|
|
1526
|
-
readonly value: "\\triangle";
|
|
1514
|
+
readonly value: "\\triangle\\Box";
|
|
1527
1515
|
readonly isShortcut: true;
|
|
1528
1516
|
readonly description: "Triangle";
|
|
1529
1517
|
} | {
|
|
1530
1518
|
readonly label: "\\overline{\\Box}";
|
|
1531
|
-
readonly value: "\\overline{
|
|
1519
|
+
readonly value: "\\overline{\\Box}";
|
|
1532
1520
|
readonly isShortcut: true;
|
|
1533
1521
|
readonly description: "Line segment";
|
|
1534
1522
|
})[] | ({
|
|
@@ -1543,63 +1531,63 @@ export const coordinateGeometryKeyboard: (({
|
|
|
1543
1531
|
readonly description: "Degree symbol";
|
|
1544
1532
|
} | {
|
|
1545
1533
|
readonly label: "\\overrightarrow{\\Box}";
|
|
1546
|
-
readonly value: "\\overrightarrow{
|
|
1534
|
+
readonly value: "\\overrightarrow{\\Box}";
|
|
1547
1535
|
readonly isShortcut: true;
|
|
1548
1536
|
readonly description: "Ray";
|
|
1549
1537
|
} | {
|
|
1550
1538
|
readonly label: "\\overleftrightarrow{\\Box}";
|
|
1551
|
-
readonly value: "\\overleftrightarrow{
|
|
1539
|
+
readonly value: "\\overleftrightarrow{\\Box}";
|
|
1552
1540
|
readonly isShortcut: true;
|
|
1553
1541
|
readonly description: "Line";
|
|
1554
1542
|
} | {
|
|
1555
1543
|
readonly label: "\\overset{\\frown}{\\Box\\Box}";
|
|
1556
|
-
readonly value: "\\overset{\\frown}{
|
|
1544
|
+
readonly value: "\\overset{\\frown}{\\Box\\Box}";
|
|
1557
1545
|
readonly isShortcut: true;
|
|
1558
1546
|
readonly description: "Arc";
|
|
1559
1547
|
} | {
|
|
1560
1548
|
readonly label: "(\\Box, \\Box)";
|
|
1561
|
-
readonly value: "(
|
|
1549
|
+
readonly value: "(\\Box, \\Box)";
|
|
1562
1550
|
readonly isShortcut: true;
|
|
1563
1551
|
readonly description: "Coordinate pair";
|
|
1564
1552
|
} | {
|
|
1565
1553
|
readonly label: "m = \\frac{\\Box - \\Box}{\\Box - \\Box}";
|
|
1566
|
-
readonly value: "m = \\frac{
|
|
1554
|
+
readonly value: "m = \\frac{\\Box - \\Box}{\\Box - \\Box}";
|
|
1567
1555
|
readonly isShortcut: true;
|
|
1568
1556
|
readonly description: "Slope formula";
|
|
1569
1557
|
})[])[];
|
|
1570
1558
|
export const trigonometryKeyboard: (({
|
|
1571
1559
|
readonly label: "\\sin (\\Box)";
|
|
1572
|
-
readonly value: "\\sin ()";
|
|
1560
|
+
readonly value: "\\sin (\\Box)";
|
|
1573
1561
|
readonly isShortcut: true;
|
|
1574
1562
|
readonly description: "Sine function with parentheses";
|
|
1575
1563
|
} | {
|
|
1576
1564
|
readonly label: "\\cos (\\Box)";
|
|
1577
|
-
readonly value: "\\cos ()";
|
|
1565
|
+
readonly value: "\\cos (\\Box)";
|
|
1578
1566
|
readonly isShortcut: true;
|
|
1579
1567
|
readonly description: "Cosine function with parentheses";
|
|
1580
1568
|
} | {
|
|
1581
1569
|
readonly label: "\\tan (\\Box)";
|
|
1582
|
-
readonly value: "\\tan ()";
|
|
1570
|
+
readonly value: "\\tan (\\Box)";
|
|
1583
1571
|
readonly isShortcut: true;
|
|
1584
1572
|
readonly description: "Tangent function with parentheses";
|
|
1585
1573
|
} | {
|
|
1586
1574
|
readonly label: "\\sin^{-1} (\\Box)";
|
|
1587
|
-
readonly value: "\\sin^{-1} ()";
|
|
1575
|
+
readonly value: "\\sin^{-1} (\\Box)";
|
|
1588
1576
|
readonly isShortcut: true;
|
|
1589
1577
|
readonly description: "Inverse sine (arcsine) with parentheses";
|
|
1590
1578
|
} | {
|
|
1591
1579
|
readonly label: "\\sec (\\Box)";
|
|
1592
|
-
readonly value: "\\sec ()";
|
|
1580
|
+
readonly value: "\\sec (\\Box)";
|
|
1593
1581
|
readonly isShortcut: true;
|
|
1594
1582
|
readonly description: "Secant function with parentheses";
|
|
1595
1583
|
} | {
|
|
1596
1584
|
readonly label: "\\csc (\\Box)";
|
|
1597
|
-
readonly value: "\\csc ()";
|
|
1585
|
+
readonly value: "\\csc (\\Box)";
|
|
1598
1586
|
readonly isShortcut: true;
|
|
1599
1587
|
readonly description: "Cosecant function with parentheses";
|
|
1600
1588
|
} | {
|
|
1601
1589
|
readonly label: "\\cot (\\Box)";
|
|
1602
|
-
readonly value: "\\cot ()";
|
|
1590
|
+
readonly value: "\\cot (\\Box)";
|
|
1603
1591
|
readonly isShortcut: true;
|
|
1604
1592
|
readonly description: "Cotangent function with parentheses";
|
|
1605
1593
|
})[] | ({
|
|
@@ -1629,12 +1617,12 @@ export const trigonometryKeyboard: (({
|
|
|
1629
1617
|
readonly description: "Greek phi";
|
|
1630
1618
|
} | {
|
|
1631
1619
|
readonly label: "\\cos^{-1} (\\Box)";
|
|
1632
|
-
readonly value: "\\cos^{-1} ()";
|
|
1620
|
+
readonly value: "\\cos^{-1} (\\Box)";
|
|
1633
1621
|
readonly isShortcut: true;
|
|
1634
1622
|
readonly description: "Inverse cosine (arccosine) with parentheses";
|
|
1635
1623
|
} | {
|
|
1636
1624
|
readonly label: "\\tan^{-1} (\\Box)";
|
|
1637
|
-
readonly value: "\\tan^{-1} ()";
|
|
1625
|
+
readonly value: "\\tan^{-1} (\\Box)";
|
|
1638
1626
|
readonly isShortcut: true;
|
|
1639
1627
|
readonly description: "Inverse tangent (arctangent)";
|
|
1640
1628
|
})[])[];
|
|
@@ -1645,32 +1633,32 @@ export const calculusKeyboard: (({
|
|
|
1645
1633
|
readonly description: "Infinity";
|
|
1646
1634
|
} | {
|
|
1647
1635
|
readonly label: "\\lim_{\\Box\\to\\Box} (\\Box)";
|
|
1648
|
-
readonly value: "\\lim_{
|
|
1636
|
+
readonly value: "\\lim_{\\Box\\to\\Box} (\\Box)";
|
|
1649
1637
|
readonly isShortcut: true;
|
|
1650
1638
|
readonly description: "Limit notation with parentheses";
|
|
1651
1639
|
} | {
|
|
1652
1640
|
readonly label: "\\frac{d}{d\\Box} (\\Box)";
|
|
1653
|
-
readonly value: "\\frac{d}{
|
|
1641
|
+
readonly value: "\\frac{d}{d\\Box} (\\Box)";
|
|
1654
1642
|
readonly isShortcut: true;
|
|
1655
1643
|
readonly description: "First derivative with parentheses";
|
|
1656
1644
|
} | {
|
|
1657
1645
|
readonly label: "\\int \\Box \\, d\\Box";
|
|
1658
|
-
readonly value: "\\int
|
|
1646
|
+
readonly value: "\\int \\Box \\, d\\Box";
|
|
1659
1647
|
readonly isShortcut: true;
|
|
1660
1648
|
readonly description: "Indefinite integral";
|
|
1661
1649
|
} | {
|
|
1662
1650
|
readonly label: "\\int_{\\Box}^{\\Box} \\Box \\, d\\Box";
|
|
1663
|
-
readonly value: "\\int_{
|
|
1651
|
+
readonly value: "\\int_{\\Box}^{\\Box} \\Box \\, d\\Box";
|
|
1664
1652
|
readonly isShortcut: true;
|
|
1665
1653
|
readonly description: "Definite integral";
|
|
1666
1654
|
} | {
|
|
1667
1655
|
readonly label: "\\frac{\\partial \\Box}{\\partial \\Box}";
|
|
1668
|
-
readonly value: "\\frac{\\partial
|
|
1656
|
+
readonly value: "\\frac{\\partial \\Box}{\\partial \\Box}";
|
|
1669
1657
|
readonly isShortcut: true;
|
|
1670
1658
|
readonly description: "Partial derivative";
|
|
1671
1659
|
} | {
|
|
1672
1660
|
readonly label: "[\\Box]_{\\Box}^{\\Box}";
|
|
1673
|
-
readonly value: "[
|
|
1661
|
+
readonly value: "[\\Box]_{\\Box}^{\\Box}";
|
|
1674
1662
|
readonly isShortcut: true;
|
|
1675
1663
|
readonly description: "Evaluation brackets";
|
|
1676
1664
|
})[] | ({
|
|
@@ -1690,12 +1678,12 @@ export const calculusKeyboard: (({
|
|
|
1690
1678
|
readonly description: "Greek Delta (capital)";
|
|
1691
1679
|
} | {
|
|
1692
1680
|
readonly label: "[\\Box]_{\\Box}^{\\Box}";
|
|
1693
|
-
readonly value: "[
|
|
1681
|
+
readonly value: "[\\Box]_{\\Box}^{\\Box}";
|
|
1694
1682
|
readonly isShortcut: true;
|
|
1695
1683
|
readonly description: "Evaluation brackets";
|
|
1696
1684
|
} | {
|
|
1697
1685
|
readonly label: "\\oint (\\Box) \\, d\\Box";
|
|
1698
|
-
readonly value: "\\oint () \\,
|
|
1686
|
+
readonly value: "\\oint (\\Box) \\, d\\Box";
|
|
1699
1687
|
readonly isShortcut: true;
|
|
1700
1688
|
readonly description: "Line integral with parentheses";
|
|
1701
1689
|
} | {
|
|
@@ -1705,33 +1693,33 @@ export const calculusKeyboard: (({
|
|
|
1705
1693
|
readonly description: "Euler's number (e ≈ 2.718)";
|
|
1706
1694
|
} | {
|
|
1707
1695
|
readonly label: "\\ln |\\Box|";
|
|
1708
|
-
readonly value: "\\ln |
|
|
1696
|
+
readonly value: "\\ln |\\Box|";
|
|
1709
1697
|
readonly isShortcut: true;
|
|
1710
1698
|
readonly description: "Natural logarithm of absolute value";
|
|
1711
1699
|
})[])[];
|
|
1712
1700
|
export const statsProbabilityKeyboard: (({
|
|
1713
1701
|
readonly label: "\\overline{\\Box}";
|
|
1714
|
-
readonly value: "\\overline{
|
|
1702
|
+
readonly value: "\\overline{\\Box}";
|
|
1715
1703
|
readonly isShortcut: true;
|
|
1716
1704
|
readonly description: "Sample mean (x-bar)";
|
|
1717
1705
|
} | {
|
|
1718
1706
|
readonly label: "^\\Box P_\\Box";
|
|
1719
|
-
readonly value: "
|
|
1707
|
+
readonly value: "^\\Box P_\\Box";
|
|
1720
1708
|
readonly isShortcut: true;
|
|
1721
1709
|
readonly description: "Permutation (nPr)";
|
|
1722
1710
|
} | {
|
|
1723
1711
|
readonly label: "^\\Box C_\\Box";
|
|
1724
|
-
readonly value: "
|
|
1712
|
+
readonly value: "^\\Box C_\\Box";
|
|
1725
1713
|
readonly isShortcut: true;
|
|
1726
1714
|
readonly description: "Combination (nCr)";
|
|
1727
1715
|
} | {
|
|
1728
1716
|
readonly label: "P(\\Box)";
|
|
1729
|
-
readonly value: "P()";
|
|
1717
|
+
readonly value: "P(\\Box)";
|
|
1730
1718
|
readonly isShortcut: true;
|
|
1731
1719
|
readonly description: "Probability function";
|
|
1732
1720
|
} | {
|
|
1733
1721
|
readonly label: "\\binom{\\Box}{\\Box}";
|
|
1734
|
-
readonly value: "\\binom{
|
|
1722
|
+
readonly value: "\\binom{\\Box}{\\Box}";
|
|
1735
1723
|
readonly isShortcut: true;
|
|
1736
1724
|
readonly description: "Binomial coefficient (n choose k)";
|
|
1737
1725
|
} | {
|
|
@@ -1751,7 +1739,7 @@ export const statsProbabilityKeyboard: (({
|
|
|
1751
1739
|
readonly description: "Factorial";
|
|
1752
1740
|
} | {
|
|
1753
1741
|
readonly label: "\\text{Var}(\\Box)";
|
|
1754
|
-
readonly value: "\\text{Var}(
|
|
1742
|
+
readonly value: "\\text{Var}(\\Box)";
|
|
1755
1743
|
readonly isShortcut: true;
|
|
1756
1744
|
readonly description: "Variance function";
|
|
1757
1745
|
} | {
|
|
@@ -1771,28 +1759,28 @@ export const statsProbabilityKeyboard: (({
|
|
|
1771
1759
|
readonly description: "Frequency with subscript i";
|
|
1772
1760
|
} | {
|
|
1773
1761
|
readonly label: "z = \\frac{\\Box - μ}{σ}";
|
|
1774
|
-
readonly value: "z = \\frac{
|
|
1762
|
+
readonly value: "z = \\frac{\\Box - μ}{σ}";
|
|
1775
1763
|
readonly isShortcut: true;
|
|
1776
1764
|
readonly description: "Z-score standardization formula";
|
|
1777
1765
|
} | {
|
|
1778
1766
|
readonly label: "\\sum \\Box";
|
|
1779
|
-
readonly value: "\\sum
|
|
1767
|
+
readonly value: "\\sum \\Box";
|
|
1780
1768
|
readonly isShortcut: true;
|
|
1781
1769
|
readonly description: "Simple summation";
|
|
1782
1770
|
})[])[];
|
|
1783
1771
|
export const matricesVectorsKeyboard: (({
|
|
1784
1772
|
readonly label: "\\vec{\\Box}";
|
|
1785
|
-
readonly value: "\\vec{
|
|
1773
|
+
readonly value: "\\vec{\\Box}";
|
|
1786
1774
|
readonly isShortcut: true;
|
|
1787
1775
|
readonly description: "Vector with arrow";
|
|
1788
1776
|
} | {
|
|
1789
1777
|
readonly label: "\\hat{\\Box}";
|
|
1790
|
-
readonly value: "\\hat{
|
|
1778
|
+
readonly value: "\\hat{\\Box}";
|
|
1791
1779
|
readonly isShortcut: true;
|
|
1792
1780
|
readonly description: "Unit vector with hat";
|
|
1793
1781
|
} | {
|
|
1794
1782
|
readonly label: "||\\Box||";
|
|
1795
|
-
readonly value: "||
|
|
1783
|
+
readonly value: "||\\Box||";
|
|
1796
1784
|
readonly isShortcut: true;
|
|
1797
1785
|
readonly description: "Vector magnitude/norm";
|
|
1798
1786
|
} | {
|
|
@@ -1811,25 +1799,25 @@ export const matricesVectorsKeyboard: (({
|
|
|
1811
1799
|
readonly isShortcut: true;
|
|
1812
1800
|
readonly description: "Unit vector k";
|
|
1813
1801
|
} | {
|
|
1814
|
-
readonly label: "
|
|
1802
|
+
readonly label: "matrix (2×2)";
|
|
1815
1803
|
readonly value: "\\begin{bmatrix}{}&{}\\\\{}&{}\\end{bmatrix}";
|
|
1816
1804
|
readonly isShortcut: true;
|
|
1817
|
-
readonly description: "
|
|
1805
|
+
readonly description: "matrix (2×2)";
|
|
1818
1806
|
})[] | ({
|
|
1819
1807
|
readonly label: "λ";
|
|
1820
1808
|
readonly value: "\\lambda";
|
|
1821
1809
|
readonly isShortcut: true;
|
|
1822
1810
|
readonly description: "Greek lambda";
|
|
1823
1811
|
} | {
|
|
1824
|
-
readonly label: "
|
|
1812
|
+
readonly label: "determinant (2×2)";
|
|
1825
1813
|
readonly value: "\\begin{vmatrix}{}&{}\\\\{}&{}\\end{vmatrix}";
|
|
1826
1814
|
readonly isShortcut: true;
|
|
1827
|
-
readonly description: "
|
|
1815
|
+
readonly description: "determinant (2×2)";
|
|
1828
1816
|
} | {
|
|
1829
|
-
readonly label: "
|
|
1817
|
+
readonly label: "matrix (3×3)";
|
|
1830
1818
|
readonly value: "\\begin{bmatrix}{}&{}&{}\\\\{}&{}&{}\\\\{}&{}&{}\\end{bmatrix}";
|
|
1831
1819
|
readonly isShortcut: true;
|
|
1832
|
-
readonly description: "
|
|
1820
|
+
readonly description: "matrix (3×3)";
|
|
1833
1821
|
} | {
|
|
1834
1822
|
readonly label: "\\cdot";
|
|
1835
1823
|
readonly value: "\\cdot";
|
|
@@ -1847,7 +1835,7 @@ export const matricesVectorsKeyboard: (({
|
|
|
1847
1835
|
readonly description: "Matrix inverse";
|
|
1848
1836
|
} | {
|
|
1849
1837
|
readonly label: "\\text{det}(\\Box)";
|
|
1850
|
-
readonly value: "\\text{det}(
|
|
1838
|
+
readonly value: "\\text{det}(\\Box)";
|
|
1851
1839
|
readonly isShortcut: true;
|
|
1852
1840
|
readonly description: "Determinant function";
|
|
1853
1841
|
})[])[];
|
|
@@ -1858,7 +1846,7 @@ export const complexNumbersKeyboard: (({
|
|
|
1858
1846
|
readonly description: "Imaginary unit";
|
|
1859
1847
|
} | {
|
|
1860
1848
|
readonly label: "\\overline{\\Box}";
|
|
1861
|
-
readonly value: "\\overline{
|
|
1849
|
+
readonly value: "\\overline{\\Box}";
|
|
1862
1850
|
readonly isShortcut: true;
|
|
1863
1851
|
readonly description: "Complex conjugate";
|
|
1864
1852
|
} | {
|
|
@@ -1868,7 +1856,7 @@ export const complexNumbersKeyboard: (({
|
|
|
1868
1856
|
readonly description: "Modulus (absolute value of complex number)";
|
|
1869
1857
|
} | {
|
|
1870
1858
|
readonly label: "\\arg(\\Box)";
|
|
1871
|
-
readonly value: "\\arg(
|
|
1859
|
+
readonly value: "\\arg(\\Box)";
|
|
1872
1860
|
readonly isShortcut: true;
|
|
1873
1861
|
readonly description: "Argument of complex number";
|
|
1874
1862
|
} | {
|
|
@@ -1878,17 +1866,17 @@ export const complexNumbersKeyboard: (({
|
|
|
1878
1866
|
readonly description: "Euler's formula";
|
|
1879
1867
|
} | {
|
|
1880
1868
|
readonly label: "\\text{Re}(\\Box)";
|
|
1881
|
-
readonly value: "\\text{Re}(
|
|
1869
|
+
readonly value: "\\text{Re}(\\Box)";
|
|
1882
1870
|
readonly isShortcut: true;
|
|
1883
1871
|
readonly description: "Real part of complex number";
|
|
1884
1872
|
} | {
|
|
1885
1873
|
readonly label: "\\text{Im}(\\Box)";
|
|
1886
|
-
readonly value: "\\text{Im}(
|
|
1874
|
+
readonly value: "\\text{Im}(\\Box)";
|
|
1887
1875
|
readonly isShortcut: true;
|
|
1888
1876
|
readonly description: "Imaginary part of complex number";
|
|
1889
1877
|
})[] | ({
|
|
1890
1878
|
readonly label: "\\sqrt{\\square}";
|
|
1891
|
-
readonly value: "\\sqrt{
|
|
1879
|
+
readonly value: "\\sqrt{\\Box}";
|
|
1892
1880
|
readonly isShortcut: true;
|
|
1893
1881
|
readonly description: "Square root";
|
|
1894
1882
|
} | {
|
|
@@ -1924,16 +1912,16 @@ export const complexNumbersKeyboard: (({
|
|
|
1924
1912
|
})[])[];
|
|
1925
1913
|
export const chemistryKeyboard: ({
|
|
1926
1914
|
readonly label: "(\\Box)_{s}";
|
|
1927
|
-
readonly value: "()_{s}";
|
|
1915
|
+
readonly value: "(\\Box)_{s}";
|
|
1928
1916
|
} | {
|
|
1929
1917
|
readonly label: "(\\Box)_{g}";
|
|
1930
|
-
readonly value: "()_{g}";
|
|
1918
|
+
readonly value: "(\\Box)_{g}";
|
|
1931
1919
|
} | {
|
|
1932
1920
|
readonly label: "(\\Box)_{aq}";
|
|
1933
|
-
readonly value: "()_{aq}";
|
|
1921
|
+
readonly value: "(\\Box)_{aq}";
|
|
1934
1922
|
} | {
|
|
1935
1923
|
readonly label: "[\\Box]";
|
|
1936
|
-
readonly value: "[
|
|
1924
|
+
readonly value: "[\\Box]";
|
|
1937
1925
|
readonly isShortcut: true;
|
|
1938
1926
|
readonly description: "Concentration brackets";
|
|
1939
1927
|
} | {
|
|
@@ -1954,17 +1942,17 @@ export const chemistryKeyboard: ({
|
|
|
1954
1942
|
})[][];
|
|
1955
1943
|
export const physicsKeyboard: (({
|
|
1956
1944
|
readonly label: "\\vec{\\Box}";
|
|
1957
|
-
readonly value: "\\vec{
|
|
1945
|
+
readonly value: "\\vec{\\Box}";
|
|
1958
1946
|
readonly isShortcut: true;
|
|
1959
1947
|
readonly description: "Vector with arrow";
|
|
1960
1948
|
} | {
|
|
1961
1949
|
readonly label: "\\hat{\\Box}";
|
|
1962
|
-
readonly value: "\\hat{
|
|
1950
|
+
readonly value: "\\hat{\\Box}";
|
|
1963
1951
|
readonly isShortcut: true;
|
|
1964
1952
|
readonly description: "Unit vector with hat";
|
|
1965
1953
|
} | {
|
|
1966
1954
|
readonly label: "\\Box \\times 10^\\Box";
|
|
1967
|
-
readonly value: "
|
|
1955
|
+
readonly value: "\\Box \\times 10^\\Box";
|
|
1968
1956
|
readonly isShortcut: true;
|
|
1969
1957
|
readonly description: "Scientific notation";
|
|
1970
1958
|
} | {
|