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
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
//! Function implementations for KaTeX
//!
//! This module provides implementations of various LaTeX functions supported by
//! KaTeX, focusing on mathematical typesetting and rendering. It includes
//! mechanisms for defining and registering functions that handle LaTeX
//! commands, such as generalized fractions (genfrac), relaxation commands, and
//! various mathematical operators.
//!
//! ## Key Components
//!
//! - **Generalized Fractions (genfrac)**: Handles infix primitives like
//! `\over`, `\choose`, `\atop`, etc., which are used to create fractions and
//! similar constructs in mathematical expressions. These are replaced with
//! appropriate fraction variants during parsing.
//!
//! - **Relaxation Mechanisms**: Implements commands like `\relax`, which serve
//! as no-op operations to control parsing flow and prevent unwanted
//! expansions in TeX-like contexts.
//!
//! - **Poor Man's Bold (pmb)**: Implements `\pmb` command that simulates bold
//! text using CSS text-shadow when proper bold fonts are not available.
//!
//! - **Font Commands**: Provides font family and style commands like `\mathrm`,
//! `\mathbf`, `\mathit`, etc., for controlling text appearance in
//! mathematical expressions.
//!
//! - **Operator Commands**: Implements mathematical operators like `\int`,
//! `\sum`, `\lim`, with proper spacing and limit positioning.
//!
//! - **Styling Commands**: Handles text styling commands like `\textstyle`,
//! `\scriptstyle`, `\scriptscriptstyle` for controlling mathematical
//! expression sizing.
//!
//! The module organizes function definitions into submodules for better
//! maintainability and follows KaTeX conventions for LaTeX command handling.
// Export individual function modules
// Export individual function modules
// Re-export function registration functions
/// Registers infix generalized fraction commands in the KaTeX context.
/// !TODO: document
pub use define_environment;
/// This function defines LaTeX infix primitives such as `\over`, `\choose`,
/// `\atop`, `\brace`, and `\brack`, which are essential for creating fractions
/// and related mathematical constructs. These commands are not rendered
/// directly but are immediately replaced with their corresponding fraction
/// variants (e.g., `\frac`, `\binom`) during the parsing process.
///
/// # Parameters
///
/// - `ctx`: A mutable reference to the [`crate::KatexContext`] where the
/// functions are registered.
///
/// # Return Value
///
/// This function does not return a value; it modifies the provided context by
/// adding the function definitions.
///
/// # Error Handling
///
/// Errors may occur during parsing if an unrecognized infix command is
/// encountered, resulting in a `ParseError`.
///
/// # See Also
///
/// - [`define_relax`] for implementing relaxation commands.
/// - The genfrac module for detailed implementation.
pub use define_genfrac;
/// Registers the `\relax` command in the KaTeX context.
///
/// The `\relax` command is a LaTeX no-op primitive that produces no visible
/// output but can be used to stop macro expansion or control parsing behavior
/// in certain contexts. It is particularly useful in TeX-like environments
/// where expansion needs to be halted without affecting the document structure.
///
/// # Parameters
///
/// - `ctx`: A mutable reference to the [`crate::KatexContext`] where the
/// function is registered.
///
/// # Return Value
///
/// This function does not return a value; it modifies the provided context by
/// adding the function definition.
///
/// # Error Handling
///
/// As a no-op, this function typically does not produce errors, but parsing
/// errors may occur in the broader context.
///
/// # See Also
///
/// - [`define_genfrac`] for fraction-related commands.
/// - The relax module for detailed implementation.
pub use define_relax;
/// Registers the `\sqrt` function in the KaTeX context.
///
/// The `\sqrt` command creates square root and nth root expressions with proper
/// sizing and positioning of the radical symbol and optional root indices.
///
/// # Parameters
///
/// - `ctx`: A mutable reference to the [`crate::KatexContext`] where the
/// function is registered.
///
/// # Return Value
///
/// This function does not return a value; it modifies the provided context by
/// adding the function definition.
///
/// # LaTeX Syntax
///
/// ```latex
/// \sqrt{x} % Square root
/// \sqrt[3]{x} % Cube root
/// \sqrt[n]{x} % nth root
/// ```
///
/// # Arguments
///
/// - Required: The expression under the radical
/// - Optional: The root index (e.g., 3 for cube root, n for nth root)
///
/// # Error Handling
///
/// Errors may occur during parsing if:
/// - Required arguments are missing
/// - Invalid argument types are provided
///
/// # See Also
///
/// - [`define_genfrac`] for fraction-related commands.
/// - The sqrt module for detailed implementation.
pub use define_sqrt;
/// Registers the `\@char` function in the KaTeX context.
///
/// The `\@char` function is an internal LaTeX command that converts a decimal
/// number enclosed in braces (e.g., {123}) into the corresponding Unicode
/// character. It is used by the `\char` macro to create symbols from code
/// points.
///
/// # Parameters
///
/// - `ctx`: A mutable reference to the [`crate::KatexContext`] where the
/// function is registered.
///
/// # Return Value
///
/// This function does not return a value; it modifies the provided context by
/// adding the function definition.
///
/// # Error Handling
///
/// Errors may occur during parsing if the argument is not a valid ordgroup,
/// contains non-numeric content, or represents an invalid Unicode code point.
///
/// # See Also
///
/// - [`define_relax`] for other internal commands.
pub use chardefine_char;
/// Registers the `\\` (line break) function in the KaTeX context.
///
/// The `\\` command handles line breaks and spacing in mathematical
/// expressions. It can optionally take a size parameter in square brackets to
/// specify the amount of vertical spacing to add.
///
/// # Parameters
///
/// - `ctx`: A mutable reference to the [`crate::KatexContext`] where the
/// function is registered.
///
/// # Return Value
///
/// This function does not return a value; it modifies the provided context by
/// adding the function definition.
///
/// # Error Handling
///
/// Errors may occur during parsing if the size parameter is malformed.
///
/// # See Also
///
/// - [`define_char`] for other internal commands.
pub use define_cr;
/// Font styling functions are documented above.
///
/// Registers math mode switching functions (\(, \), $, \]) in the KaTeX
/// context.
///
/// These functions handle switching between text and math modes using
/// delimiters:
/// - `\(` and `$` switch from text mode to math mode and parse expressions
/// until `\)` or `$`
/// - `\)` and `\]` throw errors for mismatched delimiters
///
/// # Parameters
///
/// - `ctx`: A mutable reference to the [`crate::KatexContext`] where the
/// functions are registered.
///
/// # Return Value
///
/// This function does not return a value; it modifies the provided context by
/// adding the function definitions.
///
/// # Error Handling
///
/// Errors may occur during parsing if delimiters are mismatched or if
/// expression parsing fails.
///
/// # See Also
///
/// - [`define_char`] for other internal commands.
pub use define_math;
/// Registers macro definition functions (\def, \gdef, \edef, \xdef, \let,
/// \futurelet, \global, \long) in the KaTeX context.
///
/// These functions provide the core macro definition functionality for KaTeX,
/// allowing users to define custom macros with parameters and replacement text.
/// The functions include:
/// - `\def`, `\gdef`: Define macros with optional global scope
/// - `\edef`, `\xdef`: Define macros with expansion of replacement text
/// - `\let`: Assign tokens to control sequences
/// - `\futurelet`: Assign tokens with lookahead
/// - `\global`, `\long`: Prefix commands for scope and parameter handling
///
/// # Parameters
///
/// - `ctx`: A mutable reference to the [`crate::KatexContext`] where the
/// functions are registered.
///
/// # Return Value
///
/// This function does not return a value; it modifies the provided context by
/// adding the function definitions.
///
/// # Implementation Notes
///
/// Due to current architecture limitations, these functions are registered but
/// their full implementation requires mutable access to the parser's token
/// stream, which is not available through the current FunctionContext API. The
/// functions return internal nodes but do not perform the actual macro
/// definition operations.
///
/// # See Also
///
/// - [`define_char`] for other internal commands.
pub use define_def;
/// Registers the `\rule` function in the KaTeX context.
///
/// The `\rule` command creates horizontal or vertical rules (lines) with
/// specified width and height, commonly used for creating custom spacing or
/// decorative elements in mathematical expressions.
///
/// # Parameters
///
/// - `ctx`: A mutable reference to the [`crate::KatexContext`] where the
/// function is registered.
///
/// # Return Value
///
/// This function does not return a value; it modifies the provided context by
/// adding the function definition.
///
/// # LaTeX Syntax
///
/// ```latex
/// \rule{2em}{0.1em} % Basic rule with width and height
/// \rule[0.5em]{2em}{0.1em} % Rule with vertical shift
/// ```
///
/// # Arguments
///
/// - `width`: The width of the rule (required)
/// - `height`: The height/thickness of the rule (required)
/// - `shift`: Optional vertical shift of the rule from baseline (optional)
///
/// # Error Handling
///
/// Errors may occur during parsing if:
/// - Required width or height arguments are missing
/// - Size specifications have invalid formats or units
///
/// # See Also
///
/// - [`define_kern`] for spacing-related commands.
pub use define_rule;
/// Registers the `\verb` function in the KaTeX context.
///
/// The `\verb` command creates verbatim text that preserves exact formatting
/// and spacing. It takes text between matching delimiters and renders it in a
/// monospace font without interpreting LaTeX commands. The `\verb*` variant
/// replaces spaces with visible symbols.
///
/// # Parameters
///
/// - `ctx`: A mutable reference to the [`crate::KatexContext`] where the
/// function is registered.
///
/// # Return Value
///
/// This function does not return a value; it modifies the provided context by
/// adding the function definition.
///
/// # LaTeX Syntax
///
/// ```latex
/// \verb|verbatim text| % Regular verb
/// \verb*|verbatim text| % Verb with visible spaces
/// ```
///
/// # Error Handling
///
/// Errors may occur during parsing if:
/// - The delimiters don't match
/// - The verb command is terminated by end of line without matching delimiter
///
/// # See Also
///
/// - [`define_rule`] for other text formatting commands.
pub use define_verb;
/// Registers the `\tag` function in the KaTeX context.
///
/// The `\tag` command creates tagged equations with custom labels, typically
/// used for equation numbering or referencing. It renders the main expression
/// alongside a tag in a table layout for proper alignment.
///
/// # Parameters
///
/// - `ctx`: A mutable reference to the [`crate::KatexContext`] where the
/// function is registered.
///
/// # Return Value
///
/// This function does not return a value; it modifies the provided context by
/// adding the function definition.
///
/// # LaTeX Syntax
///
/// ```latex
/// \tag{1} E = mc^2 % Equation with number 1
/// \tag{*} F = ma % Equation with custom label
/// ```
///
/// # Arguments
///
/// - Required: The main mathematical expression
/// - Required: The tag/label expression
///
/// # MathML Output
///
/// The function generates a MathML table structure:
/// ```xml
/// <mtable width="100%">
/// <mtr>
/// <mtd width="50%"></mtd> <!-- Left padding -->
/// <mtd>expression</mtd> <!-- Main expression -->
/// <mtd width="50%"></mtd> <!-- Right padding -->
/// <mtd>tag</mtd> <!-- Tag/label -->
/// </mtr>
/// </mtable>
/// ```
///
/// # Error Handling
///
/// Errors may occur during parsing if:
/// - Required arguments are missing
/// - Invalid argument types are provided
///
/// # See Also
///
/// - [`define_verb`] for other text formatting commands.
pub use define_tag;
/// Registers the `\overline` function in the KaTeX context.
///
/// The `\overline` command draws a horizontal line above mathematical
/// expressions for emphasis or special notation, commonly used for repeating
/// decimals or special mathematical notation.
///
/// # Parameters
///
/// - `ctx`: A mutable reference to the [`crate::KatexContext`] where the
/// functions are registered.
///
/// # Return Value
///
/// This function does not return a value; it modifies the provided context by
/// adding the function definition.
///
/// # LaTeX Syntax
///
/// ```latex
/// \overline{ABC} % Overline above expression
/// ```
///
/// # Arguments
///
/// - Required: The expression to be overlined
///
/// # Error Handling
///
/// Errors may occur during parsing if:
/// - Required argument is missing
/// - Invalid argument types are provided
///
/// # See Also
///
/// - [`define_accent`] for accent-related commands.
pub use define_overline;
/// Registers superscript and subscript functions in the KaTeX context.
///
/// This function defines LaTeX superscript and subscript commands that create
/// mathematical expressions with raised or lowered elements. Superscripts and
/// subscripts follow TeXbook rules 18(a-f) for precise positioning and spacing,
/// ensuring proper alignment with the base expression.
///
/// # Parameters
///
/// - `ctx`: A mutable reference to the [`crate::KatexContext`] where the
/// functions are registered.
///
/// # Return Value
///
/// This function does not return a value; it modifies the provided context by
/// adding the function definitions.
///
/// # LaTeX Syntax
///
/// ```latex
/// x^2 % Superscript
/// x_2 % Subscript
/// x^{a+b}_c % Both superscript and subscript
/// \sum_{i=1}^n % Sum with limits
/// ```
///
/// # Supported Commands
///
/// - `^`: Superscript operator
/// - `_`: Subscript operator
/// - Combined superscript and subscript expressions
/// - Automatic sizing and positioning based on context
///
/// # Implementation Details
///
/// The implementation handles complex positioning rules including:
/// - Rule 18a: Basic shift calculations
/// - Rule 18b: Subscript positioning
/// - Rule 18c-d: Superscript positioning
/// - Rule 18e: Collision avoidance between superscript and subscript
///
/// # Error Handling
///
/// Errors may occur during parsing if:
/// - Required base expression is missing
/// - Invalid argument types are provided
/// - Superscript/subscript syntax is malformed
///
/// # See Also
///
/// - [`define_op`] for operator-related functions with limits.
/// - [`define_accent`] for accent-related positioning.
pub use define_supsub;
/// Registers atom symbol functions in the KaTeX context.
///
/// These functions handle atomic symbols that have specific mathematical
/// meaning and spacing rules, such as binary operators, relations, delimiters,
/// and punctuation. Atoms are fundamental building blocks of mathematical
/// expressions with defined interaction rules for spacing and rendering.
///
/// # Parameters
///
/// - `ctx`: A mutable reference to the [`crate::KatexContext`] where the
/// functions are registered.
///
/// # Return Value
///
/// This function does not return a value; it modifies the provided context by
/// adding the function definitions.
///
/// # Atom Types
///
/// - `bin`: Binary operators (e.g., +, -, ×, ÷)
/// - `rel`: Relations (e.g., =, <, >, ≠)
/// - `open`: Opening delimiters (e.g., (, [, {)
/// - `close`: Closing delimiters (e.g., ), ], })
/// - `punct`: Punctuation (e.g., ,, ;, .)
/// - `inner`: Inner operators (e.g., integrals, sums)
///
/// # See Also
///
/// - [`define_symbols_ord`] for ordinary symbols.
pub use define_symbols_op;
/// Registers mathord and textord symbol functions in the KaTeX context.
///
/// These functions handle ordinary mathematical symbols and text symbols that
/// don't have special spacing rules. They are fundamental building blocks for
/// mathematical expressions.
///
/// # Parameters
///
/// - `ctx`: A mutable reference to the [`crate::KatexContext`] where the
/// functions are registered.
///
/// # Return Value
///
/// This function does not return a value; it modifies the provided context by
/// adding the function definitions.
///
/// # MathOrd vs TextOrd
///
/// - `mathord`: Ordinary mathematical symbols (variables, operators without
/// special spacing)
/// - `textord`: Ordinary text symbols in math mode (letters, punctuation)
///
/// # See Also
///
/// - [`define_accent`] for accent-related functions.
pub use define_symbols_ord;
/// Registers accent functions (\hat, \bar, \tilde, etc.) in the KaTeX context.
///
/// This function defines LaTeX accent commands that place diacritical marks
/// above or below mathematical expressions. Accents can be stretchy (adapting
/// to the width of their base) or non-stretchy, and may be shifted for better
/// positioning.
///
/// # Parameters
///
/// - `ctx`: A mutable reference to the [`crate::KatexContext`] where the
/// functions are registered.
///
/// # Return Value
///
/// This function does not return a value; it modifies the provided context by
/// adding the function definitions.
///
/// # LaTeX Syntax
///
/// ```latex
/// \hat{x} % Hat accent
/// \bar{y} % Bar accent
/// \tilde{z} % Tilde accent
/// \widehat{abc} % Wide hat accent
/// ```
///
/// # Math vs Text Mode
///
/// Some accents work differently in math mode vs text mode:
/// - Math accents: `\acute`, `\grave`, `\ddot`, `\tilde`, `\bar`, `\breve`,
/// `\check`, `\hat`, `\vec`, `\dot`, `\mathring`, `\widecheck`, `\widehat`,
/// `\widetilde`, `\overrightarrow`, `\overleftarrow`, `\Overrightarrow`,
/// `\overleftrightarrow`, `\overgroup`, `\overlinesegment`,
/// `\overleftharpoon`, `\overrightharpoon`
/// - Text accents: `\'`, `\``, `\^`, `\~`, `\=`, `\u`, `\.`, `\"`, `\c`, `\r`,
/// `\H`, `\v`, `\textcircled`
///
/// # Error Handling
///
/// Errors may occur during parsing if:
/// - Required arguments are missing
/// - Invalid argument types are provided
///
/// # See Also
///
/// - [`define_genfrac`] for fraction-related commands.
pub use define_accent;
/// Registers math class functions (\mathord, \mathbin, \mathrel, etc.) in the
/// KaTeX context.
///
/// This function defines LaTeX math class commands that control the spacing and
/// rendering behavior of mathematical elements according to their semantic
/// classification. Math classes determine how symbols interact with surrounding
/// elements in terms of spacing and positioning.
///
/// # Parameters
///
/// - `ctx`: A mutable reference to the [`crate::KatexContext`] where the
/// functions are registered.
///
/// # Return Value
///
/// This function does not return a value; it modifies the provided context by
/// adding the function definitions.
///
/// # LaTeX Syntax
///
/// ```latex
/// \mathord{x} % Ordinary symbol
/// \mathbin{+} % Binary operator
/// \mathrel{=} % Relation
/// \mathopen{(} % Opening delimiter
/// \mathclose{)} % Closing delimiter
/// \mathpunct{,} % Punctuation
/// \mathinner{\int} % Inner operator
/// \@binrel{a}{b} % Binrel with class from first argument
/// \stackrel{a}{b} % Stack symbols
/// ```
///
/// # Math Classes
///
/// - `mord`: Ordinary symbols (variables, operators without special spacing)
/// - `mbin`: Binary operators (+, -, ×, ÷)
/// - `mrel`: Relations (=, <, >, ≠)
/// - `mopen`: Opening delimiters ((, [, {)
/// - `mclose`: Closing delimiters (), ], })
/// - `mpunct`: Punctuation (,, ;, .)
/// - `minner`: Inner operators (integrals, sums)
///
/// # Error Handling
///
/// Errors may occur during parsing if:
/// - Required arguments are missing
/// - Invalid argument types are provided
///
/// # See Also
///
/// - [`define_accent`] for accent-related commands.
pub use define_mclass;
/// Registers extensible arrow functions (\xleftarrow, \xrightarrow, etc.) in
/// the KaTeX context.
///
/// This function defines LaTeX extensible arrow commands that can stretch to
/// fit their labels and support optional labels above and below the arrow.
///
/// # Parameters
///
/// - `ctx`: A mutable reference to the [`crate::KatexContext`] where the
/// functions are registered.
///
/// # Return Value
///
/// This function does not return a value; it modifies the provided context by
/// adding the function definitions.
///
/// # LaTeX Syntax
///
/// ```latex
/// \xleftarrow{f} % Left arrow with label above
/// \xrightarrow[g]{f} % Right arrow with labels above and below
/// \xleftrightarrow{h} % Bidirectional arrow
/// \xlongequal{=} % Long equal sign
/// ```
///
/// # Supported Commands
///
/// The following extensible arrow commands are supported:
/// - `\xleftarrow`, `\xrightarrow`, `\xLeftarrow`, `\xRightarrow`
/// - `\xleftrightarrow`, `\xLeftrightarrow`
/// - `\xhookleftarrow`, `\xhookrightarrow`, `\xmapsto`
/// - `\xrightharpoondown`, `\xrightharpoonup`, `\xleftharpoondown`,
/// `\xleftharpoonup`
/// - `\xrightleftharpoons`, `\xleftrightharpoons`, `\xlongequal`
/// - `\xtwoheadrightarrow`, `\xtwoheadleftarrow`, `\xtofrom`
/// - `\xrightleftarrows`, `\xrightequilibrium`, `\xleftequilibrium`
/// - `\cdrightarrow`, `\cdleftarrow`, `\cdlongequal` (CD environment arrows)
///
/// # Arguments
///
/// - Required: The main label/content above the arrow
/// - Optional: Additional label/content below the arrow
///
/// # Error Handling
///
/// Errors may occur during parsing if:
/// - Required arguments are missing
/// - Invalid argument types are provided
///
/// # See Also
///
/// - [`define_accent`] for accent-related commands.
pub use define_arrow;
/// Registers accent under functions (\underleftarrow, \underrightarrow, etc.)
/// in the KaTeX context.
///
/// This function defines LaTeX accent under commands that place diacritical
/// marks below mathematical expressions. These are typically used for
/// under-arrows and under-tildes.
///
/// # Parameters
///
/// - `ctx`: A mutable reference to the [`crate::KatexContext`] where the
/// functions are registered.
///
/// # Return Value
///
/// This function does not return a value; it modifies the provided context by
/// adding the function definitions.
///
/// # LaTeX Syntax
///
/// ```latex
/// \underleftarrow{x} % Under left arrow
/// \underrightarrow{y} % Under right arrow
/// \utilde{z} % Under tilde
/// ```
///
/// # Error Handling
///
/// Errors may occur during parsing if:
/// - Required arguments are missing
/// - Invalid argument types are provided
///
/// # See Also
///
/// - [`define_accent`] for over-accent commands.
pub use define_accentunder;
/// Registers the `\includegraphics` function in the KaTeX context.
///
/// The `\includegraphics` command includes external images or graphics in
/// mathematical expressions with specified dimensions and styling options.
///
/// # Parameters
///
/// - `ctx`: A mutable reference to the [`crate::KatexContext`] where the
/// function is registered.
///
/// # Return Value
///
/// This function does not return a value; it modifies the provided context by
/// adding the function definition.
///
/// # LaTeX Syntax
///
/// ```latex
/// \includegraphics[width=5em]{diagram.png}
/// \includegraphics[height=3em,alt=Figure]{plot.jpg}
/// \includegraphics[totalheight=4em,width=6em]{image.svg}
/// ```
///
/// # Arguments
///
/// - Required: The image source path/URL
/// - Optional: Comma-separated key-value pairs for dimensions and metadata:
/// - `width`: Image width (with unit)
/// - `height`: Image height (with unit)
/// - `totalheight`: Total height including depth (with unit)
/// - `alt`: Alternative text for accessibility
///
/// # Error Handling
///
/// Errors may occur during parsing if:
/// - Required source argument is missing or invalid
/// - Size specifications have invalid formats or unsupported units
/// - Invalid keys are used in the optional argument
/// - The command is not trusted by security settings
///
/// # Security Considerations
///
/// This command is subject to trust validation to prevent inclusion of
/// potentially malicious images. The trust settings determine whether external
/// URLs are permitted.
///
/// # See Also
///
/// - [`define_href`] for other URL-related commands.
pub use define_includegraphics;
/// Registers the `\vcenter` function in the KaTeX context.
///
/// The `\vcenter` command vertically centers mathematical expressions
/// on the math axis, useful for aligning elements in complex layouts.
///
/// # Parameters
///
/// - `ctx`: A mutable reference to the [`crate::KatexContext`] where the
/// function is registered.
///
/// # Return Value
///
/// This function does not return a value; it modifies the provided context by
/// adding the function definition.
///
/// # LaTeX Syntax
///
/// ```latex
/// \vcenter{expression} % Vertically center expression
/// ```
///
/// # Arguments
///
/// - Required: The mathematical expression to be vertically centered
///
/// # Error Handling
///
/// Errors may occur during parsing if:
/// - Required argument is missing
/// - Invalid argument types are provided
///
/// # See Also
///
/// - [`define_accent`] for accent-related commands.
pub use define_vcenter;
/// Registers the `\raisebox` function in the KaTeX context.
///
/// The `\raisebox` command vertically displaces mathematical content
/// by a specified amount, useful for fine-tuning layout and alignment.
///
/// # Parameters
///
/// - `ctx`: A mutable reference to the [`crate::KatexContext`] where the
/// function is registered.
///
/// # Return Value
///
/// This function does not return a value; it modifies the provided context by
/// adding the function definition.
///
/// # LaTeX Syntax
///
/// ```latex
/// \raisebox{1em}{content} % Raise content by 1em
/// \raisebox{-0.5em}{text} % Lower content by 0.5em
/// ```
///
/// # Arguments
///
/// - Required: The vertical displacement amount (size)
/// - Required: The mathematical expression to be displaced
///
/// # Error Handling
///
/// Errors may occur during parsing if:
/// - Required arguments are missing
/// - First argument is not a valid size specification
/// - Invalid argument types are provided
///
/// # See Also
///
/// - [`define_vcenter`] for vertical centering.
pub use define_raisebox;
/// Registers lap functions (\mathllap, \mathrlap, \mathclap) in the KaTeX
/// context.
///
/// This function defines LaTeX horizontal overlap commands that allow text
/// to overlap other content without taking up horizontal space.
///
/// # Parameters
///
/// - `ctx`: A mutable reference to the [`crate::KatexContext`] where the
/// functions are registered.
///
/// # Return Value
///
/// This function does not return a value; it modifies the provided context by
/// adding the function definitions.
///
/// # LaTeX Syntax
///
/// ```latex
/// \mathllap{left} % Left overlap
/// \mathrlap{right} % Right overlap
/// \mathclap{center} % Center overlap
/// ```
///
/// # Arguments
///
/// - Required: The content to be overlapped
///
/// # Error Handling
///
/// Errors may occur during parsing if:
/// - Required argument is missing
/// - Invalid argument types are provided
///
/// # See Also
///
/// - [`define_phantom`] for invisible content.
pub use define_lap;
/// Registers the `\html@mathml` function in the KaTeX context.
///
/// The `\html@mathml` command allows different content to be rendered in HTML
/// and MathML formats. It takes two arguments: the first is used for HTML
/// output, and the second is used for MathML output.
///
/// # Parameters
///
/// - `ctx`: A mutable reference to the [`crate::KatexContext`] where the
/// function is registered.
///
/// # Return Value
///
/// This function does not return a value; it modifies the provided context by
/// adding the function definition.
///
/// # LaTeX Syntax
///
/// ```latex
/// \html@mathml{html_content}{mathml_content}
/// ```
///
/// # Arguments
///
/// - Required: HTML content (first argument)
/// - Required: MathML content (second argument)
///
/// # Error Handling
///
/// Errors may occur during parsing if:
/// - Required arguments are missing
/// - Invalid argument types are provided
///
/// # See Also
///
/// - [`define_html`] for HTML-specific content.
pub use define_htmlmathml;
/// Registers enclose functions (\colorbox, \fcolorbox, \fbox, \cancel, etc.) in
/// the KaTeX context.
///
/// This function defines LaTeX enclosure commands that add visual styling
/// around mathematical expressions, including colored backgrounds, borders, and
/// cancellation lines.
///
/// # Parameters
///
/// - `ctx`: A mutable reference to the [`crate::KatexContext`] where the
/// functions are registered.
///
/// # Return Value
///
/// This function does not return a value; it modifies the provided context by
/// adding the function definitions.
///
/// # LaTeX Syntax
///
/// ```latex
/// \colorbox{yellow}{x} % Background color
/// \fcolorbox{red}{blue}{x} % Border and background colors
/// \fbox{x} % Simple border
/// \cancel{x} % Diagonal cancellation line
/// \bcancel{x} % Backslash cancellation
/// \xcancel{x} % Cross cancellation
/// \sout{x} % Strikethrough
/// \phase{x} % Phase angle symbol
/// \angl{x} % Actuarial angle
/// ```
///
/// # Supported Commands
///
/// The following enclosure commands are supported:
/// - `\colorbox`: Colored background
/// - `\fcolorbox`: Colored border and background
/// - `\fbox`: Simple border box
/// - `\cancel`: Upward diagonal strike
/// - `\bcancel`: Downward diagonal strike
/// - `\xcancel`: Cross (both diagonals)
/// - `\sout`: Horizontal strike
/// - `\phase`: Phase angle with SVG
/// - `\angl`: Actuarial angle
///
/// # Arguments
///
/// - `\colorbox`: Background color, content
/// - `\fcolorbox`: Border color, background color, content
/// - Other commands: Content only
///
/// # Error Handling
///
/// Errors may occur during parsing if:
/// - Required arguments are missing
/// - Invalid color specifications are provided
/// - Invalid argument types are provided
///
/// # See Also
///
/// - [`define_accent`] for accent-related commands.
pub use define_enclose;
/// Registers href functions (\href, \url) in the KaTeX context.
///
/// This function defines LaTeX hyperlink commands that create clickable links
/// within mathematical expressions. The `\href` command creates a hyperlink
/// with custom text, while `\url` creates a hyperlink from a URL that displays
/// the URL itself.
///
/// # Parameters
///
/// - `ctx`: A mutable reference to the [`crate::KatexContext`] where the
/// functions are registered.
///
/// # Return Value
///
/// This function does not return a value; it modifies the provided context by
/// adding the function definitions.
///
/// # LaTeX Syntax
///
/// ```latex
/// \href{https://example.com}{link text} % Custom link text
/// \url{https://example.com} % URL as link text
/// ```
///
/// # Arguments
///
/// - `\href`: URL (required), link text (required)
/// - `\url`: URL (required)
///
/// # Security Considerations
///
/// Both commands are subject to trust validation to prevent inclusion of
/// potentially malicious URLs. The trust settings determine whether external
/// URLs are permitted.
///
/// # Error Handling
///
/// Errors may occur during parsing if:
/// - Required arguments are missing
/// - Invalid argument types are provided
/// - The command is not trusted by security settings
///
/// # See Also
///
/// - [`define_includegraphics`] for other URL-related commands.
pub use define_href;
/// Registers color functions (\color, \textcolor, \colorbox, \fcolorbox) in the
/// KaTeX context.
///
/// This function defines LaTeX color commands that add color styling to
/// mathematical expressions, including text colors and colored backgrounds.
///
/// # Parameters
///
/// - `ctx`: A mutable reference to the [`crate::KatexContext`] where the
/// functions are registered.
///
/// # Return Value
///
/// This function does not return a value; it modifies the provided context by
/// adding the function definitions.
///
/// # LaTeX Syntax
///
/// ```latex
/// \textcolor{red}{text} % Colored text
/// \color{blue} % Set current color
/// \colorbox{yellow}{content} % Colored background
/// \fcolorbox{red}{blue}{text} % Border and background colors
/// ```
///
/// # Arguments
///
/// - `\textcolor`: Color (required), content (required)
/// - `\color`: Color (required)
/// - `\colorbox`: Background color (required), content (required)
/// - `\fcolorbox`: Border color (required), background color (required),
/// content (required)
///
/// # Error Handling
///
/// Errors may occur during parsing if:
/// - Required arguments are missing
/// - Invalid color specifications are provided
/// - Invalid argument types are provided
///
/// # See Also
///
/// - [`define_enclose`] for other visual styling commands.
pub use define_color;
/// Registers delimsizing functions (\bigl, \Bigl, \biggl, etc.) in the KaTeX
/// context.
///
/// This function defines LaTeX delimiter sizing commands that create
/// appropriately sized delimiters (parentheses, brackets, braces, etc.) based
/// on the content they enclose.
///
/// # Parameters
///
/// - `ctx`: A mutable reference to the [`crate::KatexContext`] where the
/// functions are registered.
///
/// # Return Value
///
/// This function does not return a value; it modifies the provided context by
/// adding the function definitions.
///
/// # LaTeX Syntax
///
/// ```latex
/// \bigl( \frac{a}{b} \bigr) % Large left/right parentheses
/// \Bigl[ content \Bigr] % Very large brackets
/// \biggl\{ content \biggr\} % Extremely large braces
/// \Biggl\langle content \Biggr\rangle % Extremely large angle brackets
/// ```
///
/// # Supported Commands
///
/// The following sizing commands are supported:
/// - `\bigl`, `\Bigl`, `\biggl`, `\Biggl` (left delimiters)
/// - `\bigr`, `\Bigr`, `\biggr`, `\Biggr` (right delimiters)
/// - `\bigm`, `\Bigm`, `\biggm`, `\Biggm` (middle delimiters)
/// - `\big`, `\Big`, `\bigg`, `\Bigg` (ordinary delimiters)
///
/// # Arguments
///
/// - Required: The delimiter symbol to be sized
///
/// # Error Handling
///
/// Errors may occur during parsing if:
/// - Required argument is missing
/// - Invalid delimiter symbol is provided
/// - Invalid argument types are provided
///
/// # See Also
///
/// - [`define_leftright`] for automatic delimiter sizing.
pub use define_delimsizing;
/// Registers leftright functions (\left, \right, \middle) in the KaTeX context.
///
/// This function defines LaTeX automatic delimiter sizing commands that create
/// delimiters that automatically scale to fit their enclosed content.
///
/// # Parameters
///
/// - `ctx`: A mutable reference to the [`crate::KatexContext`] where the
/// functions are registered.
///
/// # Return Value
///
/// This function does not return a value; it modifies the provided context by
/// adding the function definitions.
///
/// # LaTeX Syntax
///
/// ```latex
/// \left( \frac{a}{b} \right) % Auto-sized parentheses
/// \left[ \sum_{i=1}^n x_i \right] % Auto-sized brackets
/// \left\{ x \middle| x > 0 \right\} % With middle delimiter
/// ```
///
/// # Supported Commands
///
/// - `\left`: Left delimiter with automatic sizing
/// - `\right`: Right delimiter with automatic sizing
/// - `\middle`: Middle delimiter within `\left...\right` pairs
///
/// # Arguments
///
/// - `\left`, `\right`, `\middle`: Delimiter symbol (required)
///
/// # Error Handling
///
/// Errors may occur during parsing if:
/// - Required argument is missing
/// - Invalid delimiter symbol is provided
/// - `\middle` is used outside `\left...\right` context
/// - Mismatched `\left` and `\right` delimiters
///
/// # See Also
///
/// - [`define_delimsizing`] for manual delimiter sizing.
pub use define_leftright;
/// Registers middle delimiter functions (\middle) in the KaTeX context.
///
/// This function defines the `\middle` command for creating middle delimiters
/// within `\left...\right` pairs.
///
/// # Parameters
///
/// - `ctx`: A mutable reference to the [`crate::KatexContext`] where the
/// functions are registered.
///
/// # Return Value
///
/// This function does not return a value; it modifies the provided context by
/// adding the function definition.
///
/// # LaTeX Syntax
///
/// ```latex
/// \left\{ x \middle| x > 0 \right\} % Middle vertical bar
/// ```
///
/// # Arguments
///
/// - Required: The middle delimiter symbol
///
/// # Error Handling
///
/// Errors may occur during parsing if:
/// - Required argument is missing
/// - `\middle` is used outside `\left...\right` context
/// - Invalid delimiter symbol is provided
///
/// # See Also
///
/// - [`define_leftright`] for left/right delimiter functions.
pub use define_middle;
/// Registers hbox functions (\hbox) in the KaTeX context.
///
/// This function defines the `\hbox` command that creates horizontal boxes
/// for text content in mathematical expressions.
///
/// # Parameters
///
/// - `ctx`: A mutable reference to the [`crate::KatexContext`] where the
/// function is registered.
///
/// # Return Value
///
/// This function does not return a value; it modifies the provided context by
/// adding the function definition.
///
/// # LaTeX Syntax
///
/// ```latex
/// \hbox{text content} % Horizontal box with text
/// ```
///
/// # Arguments
///
/// - Required: The text content to be placed in the horizontal box
///
/// # Error Handling
///
/// Errors may occur during parsing if:
/// - Required argument is missing
/// - Invalid argument types are provided
///
/// # See Also
///
/// - [`define_vcenter`] for vertical centering.
pub use define_hbox;
/// Registers horizontal brace functions (\overbrace, \underbrace) in the KaTeX
/// context.
///
/// This function defines LaTeX horizontal brace commands that place stretchable
/// braces above or below mathematical expressions.
///
/// # Parameters
///
/// - `ctx`: A mutable reference to the [`crate::KatexContext`] where the
/// functions are registered.
///
/// # Return Value
///
/// This function does not return a value; it modifies the provided context by
/// adding the function definitions.
///
/// # LaTeX Syntax
///
/// ```latex
/// \overbrace{a + b + c} % Brace above expression
/// \underbrace{x + y + z} % Brace below expression
/// ```
///
/// # Supported Commands
///
/// - `\overbrace`: Places a brace above the expression
/// - `\underbrace`: Places a brace below the expression
///
/// # Arguments
///
/// - Required: The mathematical expression to be braced
///
/// # Error Handling
///
/// Errors may occur during parsing if:
/// - Required argument is missing
/// - Invalid argument types are provided
///
/// # See Also
///
/// - [`define_accent`] for accent-related commands.
pub use define_horiz_brace;
/// Registers HTML extension functions (\htmlClass, \htmlId, \htmlStyle,
/// \htmlData) in the KaTeX context.
///
/// This function defines LaTeX HTML extension commands that allow adding HTML
/// attributes and styling to mathematical expressions.
///
/// # Parameters
///
/// - `ctx`: A mutable reference to the [`crate::KatexContext`] where the
/// functions are registered.
///
/// # Return Value
///
/// This function does not return a value; it modifies the provided context by
/// adding the function definitions.
///
/// # LaTeX Syntax
///
/// ```latex
/// \htmlClass{class-name}{content} % Add CSS class
/// \htmlId{element-id}{content} % Add HTML id
/// \htmlStyle{color: red}{content} % Add inline styles
/// \htmlData{key=value}{content} % Add data attributes
/// ```
///
/// # Supported Commands
///
/// - `\htmlClass`: Adds CSS class to the element
/// - `\htmlId`: Adds HTML id to the element
/// - `\htmlStyle`: Adds inline CSS styles
/// - `\htmlData`: Adds HTML data attributes
///
/// # Arguments
///
/// - Required: The attribute value
/// - Required: The mathematical expression content
///
/// # Security Considerations
///
/// These commands are subject to trust validation to prevent injection of
/// potentially malicious HTML attributes.
///
/// # Error Handling
///
/// Errors may occur during parsing if:
/// - Required arguments are missing
/// - Invalid argument types are provided
/// - The command is not trusted by security settings
///
/// # See Also
///
/// - [`define_href`] for hyperlink commands.
pub use define_html;
/// Registers kern functions (\kern) in the KaTeX context.
///
/// This function defines the `\kern` command for adding horizontal spacing
/// between elements in mathematical expressions.
///
/// # Parameters
///
/// - `ctx`: A mutable reference to the [`crate::KatexContext`] where the
/// function is registered.
///
/// # Return Value
///
/// This function does not return a value; it modifies the provided context by
/// adding the function definition.
///
/// # LaTeX Syntax
///
/// ```latex
/// a \kern{1em} b % Add 1em horizontal space between a and b
/// ```
///
/// # Arguments
///
/// - Required: The amount of horizontal space to add
///
/// # Error Handling
///
/// Errors may occur during parsing if:
/// - Required argument is missing
/// - Invalid size specification is provided
/// - Invalid argument types are provided
///
/// # See Also
///
/// - [`define_rule`] for creating visible spacing elements.
pub use define_kern;
/// Registers mathchoice functions (\mathchoice) in the KaTeX context.
///
/// This function defines the `\mathchoice` command that selects different
/// expressions based on the current math style (display, text, script,
/// scriptscript).
///
/// # Parameters
///
/// - `ctx`: A mutable reference to the [`crate::KatexContext`] where the
/// function is registered.
///
/// # Return Value
///
/// This function does not return a value; it modifies the provided context by
/// adding the function definition.
///
/// # LaTeX Syntax
///
/// ```latex
/// \mathchoice{display}{text}{script}{scriptscript}
/// ```
///
/// # Arguments
///
/// - Required: Expression for display style
/// - Required: Expression for text style
/// - Required: Expression for script style
/// - Required: Expression for scriptscript style
///
/// # Error Handling
///
/// Errors may occur during parsing if:
/// - Required arguments are missing
/// - Invalid argument types are provided
///
/// # See Also
///
/// - [`define_sizing`] for size-based styling.
pub use define_mathchoice;
/// Registers operator functions in the KaTeX context.
///
/// This function defines mathematical operators like integrals, sums, limits,
/// etc. with proper spacing and limit positioning behavior.
///
/// # Parameters
///
/// - `ctx`: A mutable reference to the [`crate::KatexContext`] where the
/// functions are registered.
///
/// # Return Value
///
/// This function does not return a value; it modifies the provided context by
/// adding the function definitions.
///
/// # LaTeX Syntax
///
/// ```latex
/// \int_a^b f(x) \, dx % Integral with limits
/// \sum_{i=1}^n x_i % Summation
/// \lim_{x \to 0} f(x) % Limit
/// ```
///
/// # Supported Commands
///
/// - `\int`: Integral operator
/// - `\sum`: Summation operator
/// - `\prod`: Product operator
/// - `\lim`: Limit operator
/// - And many others
///
/// # Arguments
///
/// - Various operators may take limits as subscripts/superscripts
///
/// # Error Handling
///
/// Errors may occur during parsing if:
/// - Invalid argument types are provided
/// - Operator syntax is malformed
///
/// # See Also
///
/// - [`define_symbols_op`] for operator symbols.
pub use define_op;
/// Registers operator name functions in the KaTeX context.
///
/// This function defines operator name commands like `\operatorname` that
/// format custom operator names with proper spacing and limit positioning.
///
/// # Parameters
///
/// - `ctx`: A mutable reference to the [`crate::KatexContext`] where the
/// functions are registered.
///
/// # Return Value
///
/// This function does not return a value; it modifies the provided context by
/// adding the function definitions.
///
/// # LaTeX Syntax
///
/// ```latex
/// \operatorname{lim} % Custom operator name
/// \operatorname*{argmax} % Custom operator with limits
/// ```
///
/// # Arguments
///
/// - Required: The operator name text
///
/// # Error Handling
///
/// Errors may occur during parsing if:
/// - Required argument is missing
/// - Invalid argument types are provided
///
/// # See Also
///
/// - [`define_op`] for built-in operators.
pub use define_operatorname;
/// Registers ordgroup functions (\@ordgroup) in the KaTeX context.
///
/// This function defines the `\@ordgroup` command for creating ordinary
/// mathematical groups with specific rendering behavior.
///
/// # Parameters
///
/// - `ctx`: A mutable reference to the [`crate::KatexContext`] where the
/// function is registered.
///
/// # Return Value
///
/// This function does not return a value; it modifies the provided context by
/// adding the function definition.
///
/// # LaTeX Syntax
///
/// ```latex
/// \@ordgroup{content} % Ordinary mathematical group
/// ```
///
/// # Arguments
///
/// - Required: The mathematical expression content
///
/// # Error Handling
///
/// Errors may occur during parsing if:
/// - Required argument is missing
/// - Invalid argument types are provided
///
/// # See Also
///
/// - [`define_mclass`] for math class commands.
pub use define_ordgroup;
/// Registers phantom functions (\phantom, \hphantom, \vphantom) in the KaTeX
/// context.
///
/// This function defines LaTeX phantom commands that create invisible elements
/// that occupy space without being visible, useful for spacing and alignment.
///
/// # Parameters
///
/// - `ctx`: A mutable reference to the [`crate::KatexContext`] where the
/// functions are registered.
///
/// # Return Value
///
/// This function does not return a value; it modifies the provided context by
/// adding the function definitions.
///
/// # LaTeX Syntax
///
/// ```latex
/// \phantom{content} % Invisible but occupies full space
/// \hphantom{content} % Invisible horizontal space only
/// \vphantom{content} % Invisible vertical space only
/// ```
///
/// # Supported Commands
///
/// - `\phantom`: Occupies both horizontal and vertical space invisibly
/// - `\hphantom`: Occupies only horizontal space invisibly
/// - `\vphantom`: Occupies only vertical space invisibly
///
/// # Arguments
///
/// - Required: The content whose dimensions should be replicated invisibly
///
/// # Error Handling
///
/// Errors may occur during parsing if:
/// - Required argument is missing
/// - Invalid argument types are provided
///
/// # See Also
///
/// - [`define_lap`] for overlapping content.
pub use define_phantom;
/// Registers the `\pmb` function in the KaTeX context.
///
/// The `\pmb` command creates poor man's bold text by overprinting characters
/// with slight offsets using CSS text-shadow. This simulates bold appearance
/// when proper bold fonts are not available.
///
/// # Parameters
///
/// - `ctx`: A mutable reference to the [`crate::KatexContext`] where the
/// function is registered.
///
/// # Return Value
///
/// This function does not return a value; it modifies the provided context by
/// adding the function definition.
///
/// # LaTeX Syntax
///
/// ```latex
/// \pmb{text} % Poor man's bold text
/// ```
///
/// # Arguments
///
/// - Required: The text to be made bold
///
/// # Error Handling
///
/// Errors may occur during parsing if:
/// - Required argument is missing
/// - Invalid argument types are provided
///
/// # See Also
///
/// - [`define_font`] for proper font styling commands.
pub use define_pmb;
/// Registers font styling functions in the KaTeX context.
///
/// This function defines LaTeX font commands that control the appearance of
/// text within mathematical expressions, including font families and styles.
///
/// # Parameters
///
/// - `ctx`: A mutable reference to the [`crate::KatexContext`] where the
/// functions are registered.
///
/// # Return Value
///
/// This function does not return a value; it modifies the provided context by
/// adding the function definitions.
///
/// # LaTeX Syntax
///
/// ```latex
/// \mathrm{roman text} % Roman/upright font
/// \mathbf{bold text} % Bold font
/// \mathit{italic text} % Italic font
/// \mathsf{sans-serif} % Sans-serif font
/// \mathtt{monospace} % Monospace font
/// ```
///
/// # Supported Commands
///
/// - `\mathrm`: Roman/upright font
/// - `\mathbf`: Bold font
/// - `\mathit`: Italic font
/// - `\mathsf`: Sans-serif font
/// - `\mathtt`: Monospace font
/// - `\mathbb`: Blackboard bold (double-struck)
/// - `\mathfrak`: Fraktur font
/// - `\mathscr`: Script font
/// - `\mathcal`: Calligraphic font
///
/// # Arguments
///
/// - Required: The text to be styled
///
/// # Error Handling
///
/// Errors may occur during parsing if:
/// - Required argument is missing
/// - Invalid argument types are provided
///
/// # See Also
///
/// - [`define_pmb`] for poor man's bold.
pub use define_font;
/// Registers sizing functions (\textstyle, \scriptstyle, etc.) in the KaTeX
/// context.
///
/// This function defines LaTeX sizing commands that change the font size
/// and style of mathematical expressions.
///
/// # Parameters
///
/// - `ctx`: A mutable reference to the [`crate::KatexContext`] where the
/// functions are registered.
///
/// # Return Value
///
/// This function does not return a value; it modifies the provided context by
/// adding the function definitions.
///
/// # LaTeX Syntax
///
/// ```latex
/// \textstyle{expression} % Text style size
/// \scriptstyle{expression} % Script style size
/// \scriptscriptstyle{expr} % Scriptscript style size
/// ```
///
/// # Supported Commands
///
/// - `\textstyle`: Text style sizing
/// - `\scriptstyle`: Script style sizing
/// - `\scriptscriptstyle`: Scriptscript style sizing
///
/// # Arguments
///
/// - Required: The mathematical expression to be sized
///
/// # Error Handling
///
/// Errors may occur during parsing if:
/// - Required argument is missing
/// - Invalid argument types are provided
///
/// # See Also
///
/// - [`define_mathchoice`] for style-dependent content.
pub use define_sizing;
/// Registers smash functions (\smash) in the KaTeX context.
///
/// This function defines the `\smash` command that removes the height and/or
/// depth of mathematical expressions for alignment purposes.
///
/// # Parameters
///
/// - `ctx`: A mutable reference to the [`crate::KatexContext`] where the
/// function is registered.
///
/// # Return Value
///
/// This function does not return a value; it modifies the provided context by
/// adding the function definition.
///
/// # LaTeX Syntax
///
/// ```latex
/// \smash{expression} % Remove both height and depth
/// \smash[t]{expression} % Remove only height (top)
/// \smash[b]{expression} % Remove only depth (bottom)
/// ```
///
/// # Arguments
///
/// - Required: The mathematical expression to be smashed
/// - Optional: Direction specifier `[t]` or `[b]`
///
/// # Error Handling
///
/// Errors may occur during parsing if:
/// - Invalid direction specifier is provided
/// - Invalid argument types are provided
///
/// # See Also
///
/// - [`define_phantom`] for invisible spacing.
pub use define_smash;
/// Registers styling functions in the KaTeX context.
///
/// This function defines text styling commands that control the size and style
/// of mathematical expressions, such as display vs inline modes.
///
/// # Parameters
///
/// - `ctx`: A mutable reference to the [`crate::KatexContext`] where the
/// functions are registered.
///
/// # Return Value
///
/// This function does not return a value; it modifies the provided context by
/// adding the function definitions.
///
/// # LaTeX Syntax
///
/// ```latex
/// \textstyle{expression} % Text style size
/// \scriptstyle{expression} % Script style size
/// \scriptscriptstyle{expr} % Scriptscript style size
/// ```
///
/// # Supported Commands
///
/// - `\textstyle`: Text style sizing
/// - `\scriptstyle`: Script style sizing
/// - `\scriptscriptstyle`: Scriptscript style sizing
///
/// # Arguments
///
/// - Required: The mathematical expression to be styled
///
/// # Error Handling
///
/// Errors may occur during parsing if:
/// - Required argument is missing
/// - Invalid argument types are provided
///
/// # See Also
///
/// - [`define_sizing`] for size changes.
pub use define_styling;
/// Registers symbol spacing functions (\,) in the KaTeX context.
///
/// This function defines LaTeX symbol spacing commands that add specific
/// amounts of horizontal spacing between mathematical elements.
///
/// # Parameters
///
/// - `ctx`: A mutable reference to the [`crate::KatexContext`] where the
/// functions are registered.
///
/// # Return Value
///
/// This function does not return a value; it modifies the provided context by
/// adding the function definitions.
///
/// # LaTeX Syntax
///
/// ```latex
/// a \, b % Thin space
/// a \: b % Medium space
/// a \; b % Thick space
/// a \! b % Negative thin space
/// ```
///
/// # Supported Commands
///
/// - `\,`: Thin space (3/18 em)
/// - `\:`, `\>`: Medium space (4/18 em)
/// - `\;`: Thick space (5/18 em)
/// - `\!`: Negative thin space (-3/18 em)
/// - `\enspace`: Half em space
/// - `\quad`: 1 em space
/// - `\qquad`: 2 em space
///
/// # Arguments
///
/// - None (these are spacing commands)
///
/// # See Also
///
/// - [`define_kern`] for custom spacing amounts.
pub use define_spacing;
/// Registers text functions (\text, \textrm, \textsf, etc.) in the KaTeX
/// context.
///
/// This function defines LaTeX text commands that render text within
/// mathematical expressions with various font styles and families.
///
/// # Parameters
///
/// - `ctx`: A mutable reference to the [`crate::KatexContext`] where the
/// functions are registered.
///
/// # Return Value
///
/// This function does not return a value; it modifies the provided context by
/// adding the function definitions.
///
/// # LaTeX Syntax
///
/// ```latex
/// \text{regular text} % Regular text
/// \textrm{roman text} % Roman font
/// \textsf{sans-serif} % Sans-serif font
/// \texttt{monospace} % Monospace font
/// \textbf{bold text} % Bold text
/// \textit{italic text} % Italic text
/// \emph{emphasized} % Emphasized text
/// ```
///
/// # Supported Commands
///
/// Font families: `\text`, `\textrm`, `\textsf`, `\texttt`, `\textnormal`
/// Font weights: `\textbf`, `\textmd`
/// Font shapes: `\textit`, `\textup`, `\emph`
///
/// # Arguments
///
/// - Required: The text content to be rendered
///
/// # Error Handling
///
/// Errors may occur during parsing if:
/// - Required argument is missing
/// - Invalid argument types are provided
///
/// # See Also
///
/// - [`define_accent`] for accent commands.
pub use define_text;
/// Registers underline functions (\underline) in the KaTeX context.
///
/// This function defines the `\underline` command that draws a horizontal
/// line below mathematical expressions.
///
/// # Parameters
///
/// - `ctx`: A mutable reference to the [`crate::KatexContext`] where the
/// function is registered.
///
/// # Return Value
///
/// This function does not return a value; it modifies the provided context by
/// adding the function definition.
///
/// # LaTeX Syntax
///
/// ```latex
/// \underline{expression} % Underline expression
/// ```
///
/// # Arguments
///
/// - Required: The mathematical expression to be underlined
///
/// # Error Handling
///
/// Errors may occur during parsing if:
/// - Required argument is missing
/// - Invalid argument types are provided
///
/// # See Also
///
/// - [`define_overline`] for overline commands.
pub use define_underline;
/// Registers assemble_sup_sub utility functions in the KaTeX context.
///
/// This module provides utility functions for assembling superscript and
/// subscript elements with proper spacing and positioning for operators
/// with limits.
///
/// # Parameters
///
/// - `ctx`: A mutable reference to the [`crate::KatexContext`] where the
/// utilities are registered.
///
/// # Return Value
///
/// This function does not return a value; it provides utility functions for
/// other modules to use.
///
/// # See Also
pub use assemble_sup_sub;