summaryrefslogtreecommitdiff
path: root/support/texlab/src/syntax/language.json
blob: 8ffcdd03e12fcfade121c1c0f9760c5f631af671 (plain)
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
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
{
  "environmentCommands": [
    {
      "name": "\\begin",
      "index": 0
    },
    {
      "name": "\\end",
      "index": 0
    }
  ],
  "citationCommands": [
    {
      "name": "\\cite",
      "index": 0
    },
    {
      "name": "\\cite*",
      "index": 0
    },
    {
      "name": "\\Cite",
      "index": 0
    },
    {
      "name": "\\nocite",
      "index": 0
    },
    {
      "name": "\\citet",
      "index": 0
    },
    {
      "name": "\\citep",
      "index": 0
    },
    {
      "name": "\\citet*",
      "index": 0
    },
    {
      "name": "\\citep*",
      "index": 0
    },
    {
      "name": "\\citeauthor",
      "index": 0
    },
    {
      "name": "\\citeauthor*",
      "index": 0
    },
    {
      "name": "\\Citeauthor",
      "index": 0
    },
    {
      "name": "\\Citeauthor*",
      "index": 0
    },
    {
      "name": "\\citetitle",
      "index": 0
    },
    {
      "name": "\\citetitle*",
      "index": 0
    },
    {
      "name": "\\citeyear",
      "index": 0
    },
    {
      "name": "\\citeyear*",
      "index": 0
    },
    {
      "name": "\\citedate",
      "index": 0
    },
    {
      "name": "\\citedate*",
      "index": 0
    },
    {
      "name": "\\citeurl",
      "index": 0
    },
    {
      "name": "\\fullcite",
      "index": 0
    },
    {
      "name": "\\citeyearpar",
      "index": 0
    },
    {
      "name": "\\citealt",
      "index": 0
    },
    {
      "name": "\\citealp",
      "index": 0
    },
    {
      "name": "\\citetext",
      "index": 0
    },
    {
      "name": "\\parencite",
      "index": 0
    },
    {
      "name": "\\parencite*",
      "index": 0
    },
    {
      "name": "\\Parencite",
      "index": 0
    },
    {
      "name": "\\footcite",
      "index": 0
    },
    {
      "name": "\\footfullcite",
      "index": 0
    },
    {
      "name": "\\footcitetext",
      "index": 0
    },
    {
      "name": "\\textcite",
      "index": 0
    },
    {
      "name": "\\Textcite",
      "index": 0
    },
    {
      "name": "\\smartcite",
      "index": 0
    },
    {
      "name": "\\Smartcite",
      "index": 0
    },
    {
      "name": "\\supercite",
      "index": 0
    },
    {
      "name": "\\autocite",
      "index": 0
    },
    {
      "name": "\\Autocite",
      "index": 0
    },
    {
      "name": "\\autocite*",
      "index": 0
    },
    {
      "name": "\\Autocite*",
      "index": 0
    },
    {
      "name": "\\volcite",
      "index": 0
    },
    {
      "name": "\\Volcite",
      "index": 0
    },
    {
      "name": "\\pvolcite",
      "index": 0
    },
    {
      "name": "\\Pvolcite",
      "index": 0
    },
    {
      "name": "\\fvolcite",
      "index": 0
    },
    {
      "name": "\\ftvolcite",
      "index": 0
    },
    {
      "name": "\\svolcite",
      "index": 0
    },
    {
      "name": "\\Svolcite",
      "index": 0
    },
    {
      "name": "\\tvolcite",
      "index": 0
    },
    {
      "name": "\\Tvolcite",
      "index": 0
    },
    {
      "name": "\\avolcite",
      "index": 0
    },
    {
      "name": "\\Avolcite",
      "index": 0
    },
    {
      "name": "\\notecite",
      "index": 0
    },
    {
      "name": "\\notecite",
      "index": 0
    },
    {
      "name": "\\pnotecite",
      "index": 0
    },
    {
      "name": "\\Pnotecite",
      "index": 0
    },
    {
      "name": "\\fnotecite",
      "index": 0
    }
  ],
  "labelCommands": [
    {
      "name": "\\label",
      "index": 0,
      "kind": "definition"
    },
    {
      "name": "\\ref",
      "index": 0,
      "kind": {
        "reference": "everything"
      }
    },
    {
      "name": "\\autoref",
      "index": 0,
      "kind": {
        "reference": "everything"
      }
    },
    {
      "name": "\\pageref",
      "index": 0,
      "kind": {
        "reference": "everything"
      }
    },
    {
      "name": "\\eqref",
      "index": 0,
      "kind": {
        "reference": "math"
      }
    },
    {
      "name": "\\cref",
      "index": 0,
      "kind": {
        "reference": "everything"
      }
    },
    {
      "name": "\\Cref",
      "index": 0,
      "kind": {
        "reference": "everything"
      }
    },
    {
      "name": "\\crefrange",
      "index": 0,
      "kind": {
        "reference": "everything"
      }
    },
    {
      "name": "\\crefrange",
      "index": 1,
      "kind": {
        "reference": "everything"
      }
    },
    {
      "name": "\\Crefrange",
      "index": 0,
      "kind": {
        "reference": "everything"
      }
    },
    {
      "name": "\\Crefrange",
      "index": 1,
      "kind": {
        "reference": "everything"
      }
    },
    {
      "name": "\\cref*",
      "index": 0,
      "kind": {
        "reference": "everything"
      }
    },
    {
      "name": "\\Cref*",
      "index": 0,
      "kind": {
        "reference": "everything"
      }
    },
    {
      "name": "\\crefrange*",
      "index": 0,
      "kind": {
        "reference": "everything"
      }
    },
    {
      "name": "\\crefrange*",
      "index": 1,
      "kind": {
        "reference": "everything"
      }
    },
    {
      "name": "\\Crefrange*",
      "index": 0,
      "kind": {
        "reference": "everything"
      }
    },
    {
      "name": "\\Crefrange*",
      "index": 1,
      "kind": {
        "reference": "everything"
      }
    },
    {
      "name": "\\namecref",
      "index": 0,
      "kind": {
        "reference": "everything"
      }
    },
    {
      "name": "\\nameCref",
      "index": 0,
      "kind": {
        "reference": "everything"
      }
    },
    {
      "name": "\\lcnamecref",
      "index": 0,
      "kind": {
        "reference": "everything"
      }
    },
    {
      "name": "\\namecrefs",
      "index": 0,
      "kind": {
        "reference": "everything"
      }
    },
    {
      "name": "\\nameCrefs",
      "index": 0,
      "kind": {
        "reference": "everything"
      }
    },
    {
      "name": "\\lcnamecrefs",
      "index": 0,
      "kind": {
        "reference": "everything"
      }
    },
    {
      "name": "\\labelcref",
      "index": 0,
      "kind": {
        "reference": "everything"
      }
    },
    {
      "name": "\\labelcpageref",
      "index": 0,
      "kind": {
        "reference": "everything"
      }
    }
  ],
  "sectionCommands": [
    {
      "name": "\\part",
      "index": 0,
      "level": 0,
      "prefix": "Part"
    },
    {
      "name": "\\part*",
      "index": 0,
      "level": 0,
      "prefix": "Part"
    },
    {
      "name": "\\chapter",
      "index": 0,
      "level": 1,
      "prefix": "Chapter"
    },
    {
      "name": "\\chapter*",
      "index": 0,
      "level": 1,
      "prefix": "Chapter"
    },
    {
      "name": "\\section",
      "index": 0,
      "level": 2,
      "prefix": "Section"
    },
    {
      "name": "\\section*",
      "index": 0,
      "level": 2,
      "prefix": "Section"
    },
    {
      "name": "\\subsection",
      "index": 0,
      "level": 3,
      "prefix": "Subsection"
    },
    {
      "name": "\\subsection*",
      "index": 0,
      "level": 3,
      "prefix": "Subsection"
    },
    {
      "name": "\\subsubsection",
      "index": 0,
      "level": 4,
      "prefix": "Subsection"
    },
    {
      "name": "\\subsubsection*",
      "index": 0,
      "level": 4,
      "prefix": "Subsection"
    },
    {
      "name": "\\paragraph",
      "index": 0,
      "level": 5,
      "prefix": "Paragraph"
    },
    {
      "name": "\\paragraph*",
      "index": 0,
      "level": 5,
      "prefix": "Paragraph"
    },
    {
      "name": "\\subparagraph",
      "index": 0,
      "level": 6,
      "prefix": "Subparagraph"
    },
    {
      "name": "\\subparagraph*",
      "index": 0,
      "level": 6,
      "prefix": "Subparagraph"
    }
  ],
  "includeCommands": [
    {
      "name": "\\documentclass",
      "index": 0,
      "kind": "class",
      "includeExtension": false
    },
    {
      "name": "\\usepackage",
      "index": 0,
      "kind": "package",
      "includeExtension": false
    },
    {
      "name": "\\RequirePackage",
      "index": 0,
      "kind": "package",
      "includeExtension": false
    },
    {
      "name": "\\include",
      "index": 0,
      "kind": "latex",
      "includeExtension": false
    },
    {
      "name": "\\input",
      "index": 0,
      "kind": "latex",
      "includeExtension": true
    },
    {
      "name": "\\bibliography",
      "index": 0,
      "kind": "bibliography",
      "includeExtension": true
    },
    {
      "name": "\\addbibresource",
      "index": 0,
      "kind": "bibliography",
      "includeExtension": true
    },
    {
      "name": "\\includegraphics",
      "index": 0,
      "kind": "image",
      "includeExtension": true
    },
    {
      "name": "\\includesvg",
      "index": 0,
      "kind": "svg",
      "includeExtension": false
    },
    {
      "name": "\\includepdf",
      "index": 0,
      "kind": "pdf",
      "includeExtension": true
    },
    {
      "name": "\\verbatiminput",
      "index": 0,
      "kind": "everything",
      "includeExtension": true
    },
    {
      "name": "\\VerbatimInput",
      "index": 0,
      "kind": "everything",
      "includeExtension": true
    },
    {
      "name": "\\subfile",
      "index": 0,
      "kind": "latex",
      "includeExtension": false
    }
  ],
  "commandDefinitionCommands": [
    {
      "name": "\\newcommand",
      "definitionIndex": 0,
      "argumentCountIndex": 0,
      "implementationIndex": 1
    },
    {
      "name": "\\renewcommand",
      "definitionIndex": 0,
      "argumentCountIndex": 0,
      "implementationIndex": 1
    },
    {
      "name": "\\DeclareRobustCommand",
      "definitionIndex": 0,
      "argumentCountIndex": 0,
      "implementationIndex": 1
    }
  ],
  "mathOperatorCommands": [
    {
      "name": "\\DeclareMathOperator",
      "definitionIndex": 0,
      "implementationIndex": 1
    },
    {
      "name": "\\DeclareMathOperator*",
      "definitionIndex": 0,
      "implementationIndex": 1
    }
  ],
  "theoremDefinitionCommands": [
    {
      "name": "\\newtheorem",
      "index": 0
    },
    {
      "name": "\\declaretheorem",
      "index": 0
    }
  ],
  "colors": [
    "black",
    "blue",
    "brown",
    "cyan",
    "darkgray",
    "gray",
    "green",
    "lightgray",
    "lime",
    "magenta",
    "olive",
    "orange",
    "pink",
    "purple",
    "red",
    "teal",
    "violet",
    "white",
    "yellow",
    "Apricot",
    "Bittersweet",
    "Blue",
    "BlueViolet",
    "Brown",
    "CadetBlue",
    "Cerulean",
    "Cyan",
    "DarkOrchid",
    "ForestGreen",
    "Goldenrod",
    "Green",
    "JungleGreen",
    "LimeGreen",
    "Mahogany",
    "Melon",
    "Mulberry",
    "OliveGreen",
    "OrangeRed",
    "Peach",
    "PineGreen",
    "ProcessBlue",
    "RawSienna",
    "RedOrange",
    "Rhodamine",
    "RoyalPurple",
    "Salmon",
    "Sepia",
    "SpringGreen",
    "TealBlue",
    "Turquoise",
    "VioletRed",
    "WildStrawberry",
    "YellowGreen",
    "Aquamarine",
    "Black",
    "BlueGreen",
    "BrickRed",
    "BurntOrange",
    "CarnationPink",
    "CornflowerBlue",
    "Dandelion",
    "Emerald",
    "Fuchsia",
    "Gray",
    "GreenYellow",
    "Lavender",
    "Magenta",
    "Maroon",
    "MidnightBlue",
    "NavyBlue",
    "Orange",
    "Orchid",
    "Periwinkle",
    "Plum",
    "Purple",
    "Red",
    "RedViolet",
    "RoyalBlue",
    "RubineRed",
    "SeaGreen",
    "SkyBlue",
    "Tan",
    "Thistle",
    "Violet",
    "White",
    "Yellow",
    "YellowOrange"
  ],
  "colorCommands": [
    {
      "name": "\\color",
      "index": 0
    },
    {
      "name": "\\colorbox",
      "index": 0
    },
    {
      "name": "\\textcolor",
      "index": 0
    },
    {
      "name": "\\pagecolor",
      "index": 0
    }
  ],
  "colorModelCommands": [
    {
      "name": "\\definecolor",
      "index": 1
    },
    {
      "name": "\\definecolorset",
      "index": 0
    }
  ],
  "glossaryEntryDefinitionCommands": [
    {
      "name": "\\newglossaryentry",
      "labelIndex": 0,
      "kind": "general"
    },
    {
      "name": "\\newacronym",
      "labelIndex": 0,
      "kind": "acronym"
    }
  ],
  "glossaryEntryReferenceCommands": [
    {
      "name": "\\gls",
      "index": 0,
      "kind": "general"
    },
    {
      "name": "\\Gls",
      "index": 0,
      "kind": "general"
    },
    {
      "name": "\\GLS",
      "index": 0,
      "kind": "general"
    },
    {
      "name": "\\glspl",
      "index": 0,
      "kind": "general"
    },
    {
      "name": "\\Glspl",
      "index": 0,
      "kind": "general"
    },
    {
      "name": "\\GLSpl",
      "index": 0,
      "kind": "general"
    },
    {
      "name": "\\glsdisp",
      "index": 0,
      "kind": "general"
    },
    {
      "name": "\\glslink",
      "index": 0,
      "kind": "general"
    },
    {
      "name": "\\glstext",
      "index": 0,
      "kind": "general"
    },
    {
      "name": "\\Glstext",
      "index": 0,
      "kind": "general"
    },
    {
      "name": "\\GLStext",
      "index": 0,
      "kind": "general"
    },
    {
      "name": "\\glsfirst",
      "index": 0,
      "kind": "general"
    },
    {
      "name": "\\Glsfirst",
      "index": 0,
      "kind": "general"
    },
    {
      "name": "\\GLSfirst",
      "index": 0,
      "kind": "general"
    },
    {
      "name": "\\glsplural",
      "index": 0,
      "kind": "general"
    },
    {
      "name": "\\Glsplural",
      "index": 0,
      "kind": "general"
    },
    {
      "name": "\\GLSplural",
      "index": 0,
      "kind": "general"
    },
    {
      "name": "\\glsfirstplural",
      "index": 0,
      "kind": "general"
    },
    {
      "name": "\\Glsfirstplural",
      "index": 0,
      "kind": "general"
    },
    {
      "name": "\\GLSfirstplural",
      "index": 0,
      "kind": "general"
    },
    {
      "name": "\\glsname",
      "index": 0,
      "kind": "general"
    },
    {
      "name": "\\Glsname",
      "index": 0,
      "kind": "general"
    },
    {
      "name": "\\GLSname",
      "index": 0,
      "kind": "general"
    },
    {
      "name": "\\glssymbol",
      "index": 0,
      "kind": "general"
    },
    {
      "name": "\\Glssymbol",
      "index": 0,
      "kind": "general"
    },
    {
      "name": "\\glsdesc",
      "index": 0,
      "kind": "general"
    },
    {
      "name": "\\Glsdesc",
      "index": 0,
      "kind": "general"
    },
    {
      "name": "\\GLSdesc",
      "index": 0,
      "kind": "general"
    },
    {
      "name": "\\glsuseri",
      "index": 0,
      "kind": "general"
    },
    {
      "name": "\\Glsuseri",
      "index": 0,
      "kind": "general"
    },
    {
      "name": "\\GLSuseri",
      "index": 0,
      "kind": "general"
    },
    {
      "name": "\\glsuserii",
      "index": 0,
      "kind": "general"
    },
    {
      "name": "\\Glsuserii",
      "index": 0,
      "kind": "general"
    },
    {
      "name": "\\GLSuserii",
      "index": 0,
      "kind": "general"
    },
    {
      "name": "\\glsuseriii",
      "index": 0,
      "kind": "general"
    },
    {
      "name": "\\Glsuseriii",
      "index": 0,
      "kind": "general"
    },
    {
      "name": "\\GLSuseriii",
      "index": 0,
      "kind": "general"
    },
    {
      "name": "\\glsuseriv",
      "index": 0,
      "kind": "general"
    },
    {
      "name": "\\Glsuseriv",
      "index": 0,
      "kind": "general"
    },
    {
      "name": "\\GLSuseriv",
      "index": 0,
      "kind": "general"
    },
    {
      "name": "\\glsuserv",
      "index": 0,
      "kind": "general"
    },
    {
      "name": "\\Glsuserv",
      "index": 0,
      "kind": "general"
    },
    {
      "name": "\\GLSuserv",
      "index": 0,
      "kind": "general"
    },
    {
      "name": "\\glsuservi",
      "index": 0,
      "kind": "general"
    },
    {
      "name": "\\Glsuservi",
      "index": 0,
      "kind": "general"
    },
    {
      "name": "\\GLSuservi",
      "index": 0,
      "kind": "general"
    },
    {
      "name": "\\acrshort",
      "index": 0,
      "kind": "acronym"
    },
    {
      "name": "\\Acrshort",
      "index": 0,
      "kind": "acronym"
    },
    {
      "name": "\\ACRshort",
      "index": 0,
      "kind": "acronym"
    },
    {
      "name": "\\acrshortpl",
      "index": 0,
      "kind": "acronym"
    },
    {
      "name": "\\Acrshortpl",
      "index": 0,
      "kind": "acronym"
    },
    {
      "name": "\\ACRshortpl",
      "index": 0,
      "kind": "acronym"
    },
    {
      "name": "\\acrlong",
      "index": 0,
      "kind": "acronym"
    },
    {
      "name": "\\Acrlong",
      "index": 0,
      "kind": "acronym"
    },
    {
      "name": "\\ACRlong",
      "index": 0,
      "kind": "acronym"
    },
    {
      "name": "\\acrlongpl",
      "index": 0,
      "kind": "acronym"
    },
    {
      "name": "\\Acrlongpl",
      "index": 0,
      "kind": "acronym"
    },
    {
      "name": "\\ACRlongpl",
      "index": 0,
      "kind": "acronym"
    },
    {
      "name": "\\acrfull",
      "index": 0,
      "kind": "acronym"
    },
    {
      "name": "\\Acrfull",
      "index": 0,
      "kind": "acronym"
    },
    {
      "name": "\\ACRfull",
      "index": 0,
      "kind": "acronym"
    },
    {
      "name": "\\acrfullpl",
      "index": 0,
      "kind": "acronym"
    },
    {
      "name": "\\Acrfullpl",
      "index": 0,
      "kind": "acronym"
    },
    {
      "name": "\\ACRfullpl",
      "index": 0,
      "kind": "acronym"
    },
    {
      "name": "\\acs",
      "index": 0,
      "kind": "acronym"
    },
    {
      "name": "\\Acs",
      "index": 0,
      "kind": "acronym"
    },
    {
      "name": "\\acsp",
      "index": 0,
      "kind": "acronym"
    },
    {
      "name": "\\Acsp",
      "index": 0,
      "kind": "acronym"
    },
    {
      "name": "\\acl",
      "index": 0,
      "kind": "acronym"
    },
    {
      "name": "\\Acl",
      "index": 0,
      "kind": "acronym"
    },
    {
      "name": "\\aclp",
      "index": 0,
      "kind": "acronym"
    },
    {
      "name": "\\Aclp",
      "index": 0,
      "kind": "acronym"
    },
    {
      "name": "\\acf",
      "index": 0,
      "kind": "acronym"
    },
    {
      "name": "\\Acf",
      "index": 0,
      "kind": "acronym"
    },
    {
      "name": "\\acfp",
      "index": 0,
      "kind": "acronym"
    },
    {
      "name": "\\Acfp",
      "index": 0,
      "kind": "acronym"
    },
    {
      "name": "\\ac",
      "index": 0,
      "kind": "acronym"
    },
    {
      "name": "\\Ac",
      "index": 0,
      "kind": "acronym"
    },
    {
      "name": "\\acp",
      "index": 0,
      "kind": "acronym"
    },
    {
      "name": "\\glsentrylong",
      "index": 0,
      "kind": "acronym"
    },
    {
      "name": "\\Glsentrylong",
      "index": 0,
      "kind": "acronym"
    },
    {
      "name": "\\glsentrylongpl",
      "index": 0,
      "kind": "acronym"
    },
    {
      "name": "\\Glsentrylongpl",
      "index": 0,
      "kind": "acronym"
    },
    {
      "name": "\\glsentryshort",
      "index": 0,
      "kind": "acronym"
    },
    {
      "name": "\\Glsentryshort",
      "index": 0,
      "kind": "acronym"
    },
    {
      "name": "\\glsentryshortpl",
      "index": 0,
      "kind": "acronym"
    },
    {
      "name": "\\Glsentryshortpl",
      "index": 0,
      "kind": "acronym"
    },
    {
      "name": "\\glsentryfullpl",
      "index": 0,
      "kind": "acronym"
    },
    {
      "name": "\\Glsentryfullpl",
      "index": 0,
      "kind": "acronym"
    }
  ],
  "entryTypes": [
    {
      "name": "preamble",
      "category": "misc",
      "documentation": null
    },
    {
      "name": "string",
      "category": "string",
      "documentation": null
    },
    {
      "name": "comment",
      "category": "misc",
      "documentation": null
    },
    {
      "name": "article",
      "category": "article",
      "documentation": "An article in a journal, magazine, newspaper, or other periodical which forms a \n self-contained unit with its own title. The title of the periodical is given in the \n journaltitle field. If the issue has its own title in addition to the main title of \n the periodical, it goes in the issuetitle field. Note that editor and related \n fields refer to the journal while translator and related fields refer to the article.\n\nRequired fields: `author`, `title`, `journaltitle`, `year/date`"
    },
    {
      "name": "book",
      "category": "book",
      "documentation": "A single-volume book with one or more authors where the authors share credit for\n the work as a whole. This entry type also covers the function of the `@inbook` type\n of traditional BibTeX.\n\nRequired fields: `author`, `title`, `year/date`"
    },
    {
      "name": "mvbook",
      "category": "book",
      "documentation": "A multi-volume `@book`. For backwards compatibility, multi-volume books are also\n supported by the entry type `@book`. However, it is advisable to make use of the\n dedicated entry type `@mvbook`.\n\nRequired fields: `author`, `title`, `year/date`"
    },
    {
      "name": "inbook",
      "category": "part",
      "documentation": "A part of a book which forms a self-contained unit with its own title. Note that the\n profile of this entry type is different from standard BibTeX.\n\nRequired fields: `author`, `title`, `booktitle`, `year/date`"
    },
    {
      "name": "bookinbook",
      "category": "part",
      "documentation": "This type is similar to `@inbook` but intended for works originally published as a\n stand-alone book. A typical example are books reprinted in the collected works of\n an author."
    },
    {
      "name": "suppbook",
      "category": "book",
      "documentation": "Supplemental material in a `@book`. This type is closely related to the `@inbook`\n entry type. While `@inbook` is primarily intended for a part of a book with its own\n title (e. g., a single essay in a collection of essays by the same author), this type is\n provided for elements such as prefaces, introductions, forewords, afterwords, etc.\n which often have a generic title only. Style guides may require such items to be\n formatted differently from other `@inbook` items. The standard styles will treat this\n entry type as an alias for `@inbook`."
    },
    {
      "name": "booklet",
      "category": "book",
      "documentation": "A book-like work without a formal publisher or sponsoring institution. Use the field\n howpublished to supply publishing information in free format, if applicable. The\n field type may be useful as well.\n\nRequired fields: `author/editor`, `title`, `year/date`"
    },
    {
      "name": "collection",
      "category": "collection",
      "documentation": "A single-volume collection with multiple, self-contained contributions by distinct\n authors which have their own title. The work as a whole has no overall author but it\n will usually have an editor.\n\nRequired fields: `editor`, `title`, `year/date`"
    },
    {
      "name": "mvcollection",
      "category": "collection",
      "documentation": "A multi-volume `@collection`. For backwards compatibility, multi-volume collections\n are also supported by the entry type `@collection`. However, it is advisable\n to make use of the dedicated entry type `@mvcollection`.\n\nRequired fields: `editor`, `title`, `year/date`"
    },
    {
      "name": "incollection",
      "category": "part",
      "documentation": "A contribution to a collection which forms a self-contained unit with a distinct author\n and title. The `author` refers to the `title`, the `editor` to the `booktitle`, i. e.,\n the title of the collection.\n\nRequired fields: `author`, `title`, `booktitle`, `year/date`"
    },
    {
      "name": "suppcollection",
      "category": "collection",
      "documentation": "Supplemental material in a `@collection`. This type is similar to `@suppbook` but\n related to the `@collection` entry type. The standard styles will treat this entry\n type as an alias for `@incollection`."
    },
    {
      "name": "manual",
      "category": "misc",
      "documentation": "Technical or other documentation, not necessarily in printed form. The author or\n editor is omissible.\n\nRequired fields: `author/editor`, `title`, `year/date`"
    },
    {
      "name": "misc",
      "category": "misc",
      "documentation": "A fallback type for entries which do not fit into any other category. Use the field\n howpublished to supply publishing information in free format, if applicable. The\n field type may be useful as well. author, editor, and year are omissible.\n\nRequired fields: `author/editor`, `title`, `year/date`"
    },
    {
      "name": "online",
      "category": "misc",
      "documentation": "An online resource. `author`, `editor`, and `year` are omissible.\n This entry type is intended for sources such as web sites which are intrinsically\n online resources. Note that all entry types support the url field. For example, when\n adding an article from an online journal, it may be preferable to use the `@article`\n type and its url field.\n\nRequired fields: `author/editor`, `title`, `year/date`, `url`"
    },
    {
      "name": "patent",
      "category": "misc",
      "documentation": "A patent or patent request. The number or record token is given in the number\n field. Use the type field to specify the type and the location field to indicate the\n scope of the patent, if different from the scope implied by the type. Note that the\n location field is treated as a key list with this entry type.\n\nRequired fields: `author`, `title`, `number`, `year/date`"
    },
    {
      "name": "periodical",
      "category": "misc",
      "documentation": "An complete issue of a periodical, such as a special issue of a journal. The title of\n the periodical is given in the title field. If the issue has its own title in addition to\n the main title of the periodical, it goes in the issuetitle field. The editor is\n omissible.\n\nRequired fields: `editor`, `title`, `year/date`"
    },
    {
      "name": "suppperiodical",
      "category": "misc",
      "documentation": "Supplemental material in a `@periodical`. This type is similar to `@suppbook`\n but related to the `@periodical` entry type. The role of this entry type may be\n more obvious if you bear in mind that the `@article` type could also be called\n `@inperiodical`. This type may be useful when referring to items such as regular\n columns, obituaries, letters to the editor, etc. which only have a generic title. Style\n guides may require such items to be formatted differently from articles in the strict\n sense of the word. The standard styles will treat this entry type as an alias for\n `@article`."
    },
    {
      "name": "proceedings",
      "category": "book",
      "documentation": "A single-volume conference proceedings. This type is very similar to `@collection`.\n It supports an optional organization field which holds the sponsoring institution.\n The editor is omissible.\n\nRequired fields: `title`, `year/date`"
    },
    {
      "name": "mvproceedings",
      "category": "book",
      "documentation": "A multi-volume `@proceedings` entry. For backwards compatibility, multi-volume\n proceedings are also supported by the entry type `@proceedings`. However, it is\n advisable to make use of the dedicated entry type `@mvproceedings`\n\nRequired fields: `title`, `year/date`"
    },
    {
      "name": "inproceedings",
      "category": "part",
      "documentation": "An article in a conference proceedings. This type is similar to `@incollection`. It\n supports an optional `organization` field.\n\nRequired fields: `author`, `title`, `booktitle`, `year/date`"
    },
    {
      "name": "reference",
      "category": "collection",
      "documentation": "A single-volume work of reference such as an encyclopedia or a dictionary. This is a\n more specific variant of the generic `@collection` entry type. The standard styles\n will treat this entry type as an alias for `@collection`."
    },
    {
      "name": "mvreference",
      "category": "collection",
      "documentation": "A multi-volume `@reference` entry. The standard styles will treat this entry type\n as an alias for `@mvcollection`. For backwards compatibility, multi-volume references\n are also supported by the entry type `@reference`. However, it is advisable\n to make use of the dedicated entry type `@mvreference`."
    },
    {
      "name": "inreference",
      "category": "part",
      "documentation": "An article in a work of reference. This is a more specific variant of the generic\n `@incollection` entry type. The standard styles will treat this entry type as an\n alias for `@incollection`."
    },
    {
      "name": "report",
      "category": "misc",
      "documentation": "A technical report, research report, or white paper published by a university or some\n other institution. Use the `type` field to specify the type of report. The sponsoring\n institution goes in the `institution` field.\n\nRequired fields: `author`, `title`, `type`, `institution`, `year/date`"
    },
    {
      "name": "set",
      "category": "misc",
      "documentation": "An entry set. This entry type is special."
    },
    {
      "name": "thesis",
      "category": "thesis",
      "documentation": "A thesis written for an educational institution to satisfy the requirements for a degree.\n Use the `type` field to specify the type of thesis.\n\nRequired fields: `author`, `title`, `type`, `institution`, `year/date`"
    },
    {
      "name": "unpublished",
      "category": "misc",
      "documentation": "A work with an author and a title which has not been formally published, such as\n a manuscript or the script of a talk. Use the fields `howpublished` and `note` to\n supply additional information in free format, if applicable.\n\nRequired fields: `author`, `title`, `year/date`"
    },
    {
      "name": "xdata",
      "category": "misc",
      "documentation": "This entry type is special. `@xdata` entries hold data which may be inherited by other\n entries using the `xdata` field. Entries of this type only serve as data containers;\n they may not be cited or added to the bibliography."
    },
    {
      "name": "conference",
      "category": "part",
      "documentation": "A legacy alias for `@inproceedings`."
    },
    {
      "name": "electronic",
      "category": "misc",
      "documentation": "An alias for `@online`."
    },
    {
      "name": "mastersthesis",
      "category": "thesis",
      "documentation": "Similar to `@thesis` except that the `type` field is optional and defaults to the\n localised term ‘Master’s thesis’. You may still use the `type` field to override that."
    },
    {
      "name": "phdthesis",
      "category": "thesis",
      "documentation": "Similar to `@thesis` except that the `type` field is optional and defaults to the\n localised term ‘PhD thesis’. You may still use the `type` field to override that."
    },
    {
      "name": "techreport",
      "category": "misc",
      "documentation": "Similar to `@report` except that the `type` field is optional and defaults to the\n localised term ‘technical report’. You may still use the `type` field to override that."
    },
    {
      "name": "www",
      "category": "misc",
      "documentation": "An alias for `@online`, provided for `jurabib` compatibility."
    },
    {
      "name": "artwork",
      "category": "misc",
      "documentation": "Works of the visual arts such as paintings, sculpture, and installations."
    },
    {
      "name": "audio",
      "category": "misc",
      "documentation": "Audio recordings, typically on audio cd, dvd, audio cassette, or similar media. See\n also `@music`."
    },
    {
      "name": "bibnote",
      "category": "misc",
      "documentation": "This special entry type is not meant to be used in the `bib` file like other types. It is\n provided for third-party packages like `notes2bib` which merge notes into the bibliography.\n The notes should go into the `note` field. Be advised that the `@bibnote`\n type is not related to the `defbibnote` command in any way. `defbibnote`\n is for adding comments at the beginning or the end of the bibliography, whereas\n the `@bibnote` type is meant for packages which render endnotes as bibliography\n entries."
    },
    {
      "name": "commentary",
      "category": "misc",
      "documentation": "Commentaries which have a status different from regular books, such as legal commentaries."
    },
    {
      "name": "image",
      "category": "misc",
      "documentation": "Images, pictures, photographs, and similar media."
    },
    {
      "name": "jurisdiction",
      "category": "misc",
      "documentation": "Court decisions, court recordings, and similar things."
    },
    {
      "name": "legislation",
      "category": "misc",
      "documentation": "Laws, bills, legislative proposals, and similar things."
    },
    {
      "name": "legal",
      "category": "misc",
      "documentation": "Legal documents such as treaties."
    },
    {
      "name": "letter",
      "category": "misc",
      "documentation": "Personal correspondence such as letters, emails, memoranda, etc."
    },
    {
      "name": "movie",
      "category": "misc",
      "documentation": "Motion pictures. See also `@video`."
    },
    {
      "name": "music",
      "category": "misc",
      "documentation": "Musical recordings. This is a more specific variant of `@audio`."
    },
    {
      "name": "performance",
      "category": "misc",
      "documentation": "Musical and theatrical performances as well as other works of the performing arts.\n This type refers to the event as opposed to a recording, a score, or a printed play."
    },
    {
      "name": "review",
      "category": "misc",
      "documentation": "Reviews of some other work. This is a more specific variant of the `@article` type.\n The standard styles will treat this entry type as an alias for `@article`."
    },
    {
      "name": "software",
      "category": "misc",
      "documentation": "Computer software."
    },
    {
      "name": "standard",
      "category": "misc",
      "documentation": "National and international standards issued by a standards body such as the International\n Organization for Standardization."
    },
    {
      "name": "video",
      "category": "misc",
      "documentation": "Audiovisual recordings, typically on dvd, vhs cassette, or similar media. See also\n `@movie`."
    }
  ],
  "fields": [
    {
      "name": "abstract",
      "documentation": "This field is intended for recording abstracts in a bib file, to be printed by a special bibliography style. It is not used by all standard bibliography styles."
    },
    {
      "name": "addendum",
      "documentation": "Miscellaneous bibliographic data to be printed at the end of the entry. This is similar to the `note` field except that it is printed at the end of the bibliography entry."
    },
    {
      "name": "afterword",
      "documentation": "The author(s) of an afterword to the work. If the author of the afterword is identical to the `editor` and/or `translator`, the standard styles will automatically concatenate these fields in the bibliography. See also `introduction` and `foreword`."
    },
    {
      "name": "annotation",
      "documentation": "This field may be useful when implementing a style for annotated bibliographies. It is not used by all standard bibliography styles. Note that this field is completely unrelated to `annotator`. The `annotator` is the author of annotations which are part of the work cited."
    },
    {
      "name": "annotator",
      "documentation": "The author(s) of annotations to the work. If the annotator is identical to the `editor` and/or `translator`, the standard styles will automatically concatenate these fields in the bibliography. See also `commentator`."
    },
    {
      "name": "author",
      "documentation": "The author(s) of the `title`."
    },
    {
      "name": "authortype",
      "documentation": "The type of author. This field will affect the string (if any) used to introduce the author. Not used by the standard bibliography styles."
    },
    {
      "name": "bookauthor",
      "documentation": "The author(s) of the `booktitle`."
    },
    {
      "name": "bookpagination",
      "documentation": "If the work is published as part of another one, this is the pagination scheme of the enclosing work, i. e., `bookpagination` relates to `pagination` like `booktitle` to `title`. The value of this field will affect the formatting of the `pages` and `pagetotal` fields. The key should be given in the singular form. Possible keys are `page`, `column`, `line`, `verse`, `section`, and `paragraph`. See also `pagination`."
    },
    {
      "name": "booksubtitle",
      "documentation": "The subtitle related to the `booktitle`. If the subtitle field refers to a work which is part of a larger publication, a possible subtitle of the main work is given in this field. See also `subtitle`."
    },
    {
      "name": "booktitle",
      "documentation": "If the `title` field indicates the title of a work which is part of a larger publication, the title of the main work is given in this field. See also `title`."
    },
    {
      "name": "booktitleaddon",
      "documentation": "An annex to the `booktitle`, to be printed in a different font."
    },
    {
      "name": "chapter",
      "documentation": "A chapter or section or any other unit of a work."
    },
    {
      "name": "commentator",
      "documentation": "The author(s) of a commentary to the work. Note that this field is intended for commented editions which have a commentator in addition to the author. If the work is a stand-alone commentary, the commentator should be given in the `author` field. If the commentator is identical to the `editor` and/or `translator`, the standard styles will automatically concatenate these fields in the bibliography. See also `annotator`."
    },
    {
      "name": "date",
      "documentation": "The publication date. See also `month` and `year`."
    },
    {
      "name": "doi",
      "documentation": "The Digital Object Identifier of the work."
    },
    {
      "name": "edition",
      "documentation": "The edition of a printed publication. This must be an integer, not an ordinal. Don’t say `edition={First}` or `edition={1st}` but `edition={1}`. The bibliography style converts this to a language dependent ordinal. It is also possible to give the edition as a literal string, for example \"Third, revised and expanded edition\"."
    },
    {
      "name": "editor",
      "documentation": "The editor(s) of the `title`, `booktitle`, or `maintitle`, depending on the entry type. Use the `editortype` field to specify the role if it is different from `editor`."
    },
    {
      "name": "editora",
      "documentation": "A secondary editor performing a different editorial role, such as compiling, redacting, etc. Use the `editoratype` field to specify the role."
    },
    {
      "name": "editorb",
      "documentation": "Another secondary editor performing a different role. Use the `editorbtype` field to specify the role."
    },
    {
      "name": "editorc",
      "documentation": "Another secondary editor performing a different role. Use the `editorctype` field to specify the role."
    },
    {
      "name": "editortype",
      "documentation": "The type of editorial role performed by the `editor`. Roles supported by default are `editor`, `compiler`, `founder`, `continuator`, `redactor`, `reviser`, `collaborator`, `organizer`. The role `editor` is the default. In this case, the field is omissible."
    },
    {
      "name": "editoratype",
      "documentation": "Similar to `editortype` but referring to the `editora` field."
    },
    {
      "name": "editorbtype",
      "documentation": "Similar to `editortype` but referring to the `editorb` field."
    },
    {
      "name": "editorctype",
      "documentation": "Similar to `editortype` but referring to the `editorc` field."
    },
    {
      "name": "eid",
      "documentation": "The electronic identifier of an `@article`."
    },
    {
      "name": "entrysubtype",
      "documentation": "This field, which is not used by the standard styles, may be used to specify a subtype of an entry type. This may be useful for bibliography styles which support a finergrained set of entry types."
    },
    {
      "name": "eprint",
      "documentation": "The electronic identifier of an online publication. This is roughly comparable to a doi but specific to a certain archive, repository, service, or system. See also `eprinttype` and `eprintclass`."
    },
    {
      "name": "eprintclass",
      "documentation": "Additional information related to the resource indicated by the `eprinttype` field. This could be a section of an archive, a path indicating a service, a classification of some sort, etc. See also`eprint` and `eprinttype`."
    },
    {
      "name": "eprinttype",
      "documentation": "The type of `eprint` identifier, e. g., the name of the archive, repository, service, or system the `eprint` field refers to. See also `eprint` and `eprintclass`."
    },
    {
      "name": "eventdate",
      "documentation": "The date of a conference, a symposium, or some other event in `@proceedings` and `@inproceedings` entries. See also `eventtitle` and `venue`."
    },
    {
      "name": "eventtitle",
      "documentation": "The title of a conference, a symposium, or some other event in `@proceedings` and `@inproceedings` entries. Note that this field holds the plain title of the event. Things like \"Proceedings of the Fifth XYZ Conference\" go into the `titleaddon` or `booktitleaddon` field, respectively. See also `eventdate` and `venue`."
    },
    {
      "name": "eventtitleaddon",
      "documentation": "An annex to the `eventtitle` field. Can be used for known event acronyms, for example."
    },
    {
      "name": "file",
      "documentation": "A local link to a PDF or other version of the work. Not used by the standard bibliography styles."
    },
    {
      "name": "foreword",
      "documentation": "The author(s) of a foreword to the work. If the author of the foreword is identical to the `editor` and/or `translator`, the standard styles will automatically concatenate these fields in the bibliography. See also `introduction` and `afterword`."
    },
    {
      "name": "holder",
      "documentation": "The holder(s) of a `@patent`, if different from the `author`. Note that corporate holders need to be wrapped in an additional set of braces."
    },
    {
      "name": "howpublished",
      "documentation": "A publication notice for unusual publications which do not fit into any of the common categories."
    },
    {
      "name": "indextitle",
      "documentation": "A title to use for indexing instead of the regular `title` field. This field may be useful if you have an entry with a title like \"An Introduction to …\" and want that indexed as \"Introduction to …, An\". Style authors should note that `biblatex` automatically copies the value of the `title` field to `indextitle` if the latter field is undefined."
    },
    {
      "name": "institution",
      "documentation": "The name of a university or some other institution, depending on the entry type. Traditional BibTeX uses the field name `school` for theses, which is supported as an alias."
    },
    {
      "name": "introduction",
      "documentation": "The author(s) of an introduction to the work. If the author of the introduction is identical to the `editor` and/or `translator`, the standard styles will automatically concatenate these fields in the bibliography. See also `foreword` and `afterword`."
    },
    {
      "name": "isan",
      "documentation": "The International Standard Audiovisual Number of an audiovisual work. Not used by the standard bibliography styles."
    },
    {
      "name": "isbn",
      "documentation": "The International Standard Book Number of a book."
    },
    {
      "name": "ismn",
      "documentation": "The International Standard Music Number for printed music such as musical scores. Not used by the standard bibliography styles."
    },
    {
      "name": "isrn",
      "documentation": "The International Standard Technical Report Number of a technical report."
    },
    {
      "name": "issn",
      "documentation": "The International Standard Serial Number of a periodical."
    },
    {
      "name": "issue",
      "documentation": "The issue of a journal. This field is intended for journals whose individual issues are identified by a designation such as ‘Spring’ or ‘Summer’ rather than the month or a number. The placement of `issue` is similar to `month` and `number`, integer ranges and short designators are better written to the number field. See also `month` and `number`."
    },
    {
      "name": "issuesubtitle",
      "documentation": "The subtitle of a specific issue of a journal or other periodical."
    },
    {
      "name": "issuetitle",
      "documentation": "The title of a specific issue of a journal or other periodical."
    },
    {
      "name": "iswc",
      "documentation": "The International Standard Work Code of a musical work. Not used by the standard bibliography styles."
    },
    {
      "name": "journalsubtitle",
      "documentation": "The subtitle of a journal, a newspaper, or some other periodical."
    },
    {
      "name": "journaltitle",
      "documentation": "The name of a journal, a newspaper, or some other periodical."
    },
    {
      "name": "label",
      "documentation": "A designation to be used by the citation style as a substitute for the regular label if any data required to generate the regular label is missing. For example, when an author-year citation style is generating a citation for an entry which is missing the author or the year, it may fall back to `label`. Note that, in contrast to `shorthand`, `label` is only used as a fallback. See also `shorthand`."
    },
    {
      "name": "language",
      "documentation": "The language(s) of the work. Languages may be specified literally or as localisation keys. If localisation keys are used, the prefix lang is omissible. See also `origlanguage`."
    },
    {
      "name": "library",
      "documentation": "This field may be useful to record information such as a library name and a call number. This may be printed by a special bibliography style if desired. Not used by the standard bibliography styles."
    },
    {
      "name": "location",
      "documentation": "The place(s) of publication, i. e., the location of the `publisher` or `institution`, depending on the entry type. Traditional BibTeX uses the field name `address`, which is supported as an alias. With `@patent` entries, this list indicates the scope of a patent."
    },
    {
      "name": "mainsubtitle",
      "documentation": "The subtitle related to the `maintitle`. See also `subtitle`."
    },
    {
      "name": "maintitle",
      "documentation": "The main title of a multi-volume book, such as *Collected Works*. If the `title` or `booktitle` field indicates the title of a single volume which is part of multi-volume book, the title of the complete work is given in this field."
    },
    {
      "name": "maintitleaddon",
      "documentation": "An annex to the `maintitle`, to be printed in a different font."
    },
    {
      "name": "month",
      "documentation": "The publication month. This must be an integer, not an ordinal or a string. Don’t say `month={January}` but `month={1}`. The bibliography style converts this to a language dependent string or ordinal where required. This field is a literal field only when given explicitly in the data (for plain BibTeX compatibility for example). It is however better to use the `date` field as this supports many more features."
    },
    {
      "name": "nameaddon",
      "documentation": "An addon to be printed immediately after the author name in the bibliography. Not used by the standard bibliography styles. This field may be useful to add an alias or pen name (or give the real name if the pseudonym is commonly used to refer to that author)."
    },
    {
      "name": "note",
      "documentation": "Miscellaneous bibliographic data which does not fit into any other field. The note field may be used to record bibliographic data in a free format. Publication facts such as \"Reprint of the edition London 1831\" are typical candidates for the note field. See also `addendum`."
    },
    {
      "name": "number",
      "documentation": "The number of a journal or the volume/number of a book in a `series`. See also `issue`. With `@patent` entries, this is the number or record token of a patent or patent request. Normally this field will be an integer or an integer range, but in certain cases it may also contain \"S1\", \"Suppl. 1\", in these cases the output should be scrutinised carefully."
    },
    {
      "name": "organization",
      "documentation": "The organization(s) that published a `@manual` or an `@online` resource, or sponsored a conference."
    },
    {
      "name": "origdate",
      "documentation": "If the work is a translation, a reprint, or something similar, the publication date of the original edition. Not used by the standard bibliography styles. See also `date`."
    },
    {
      "name": "origlanguage",
      "documentation": "If the work is a translation, the language(s) of the original work. See also `language`."
    },
    {
      "name": "origlocation",
      "documentation": "If the work is a translation, a reprint, or something similar, the location of the original edition. Not used by the standard bibliography styles. See also `location`."
    },
    {
      "name": "origpublisher",
      "documentation": "If the work is a translation, a reprint, or something similar, the publisher of the original edition. Not used by the standard bibliography styles. See also `publisher`."
    },
    {
      "name": "origtitle",
      "documentation": "If the work is a translation, the `title` of the original work. Not used by the standard bibliography styles. See also `title`."
    },
    {
      "name": "pages",
      "documentation": "One or more page numbers or page ranges. If the work is published as part of another one, such as an article in a journal or a collection, this field holds the relevant page range in that other work. It may also be used to limit the reference to a specific part of a work (a chapter in a book, for example)."
    },
    {
      "name": "pagetotal",
      "documentation": "The total number of pages of the work."
    },
    {
      "name": "pagination",
      "documentation": "The pagination of the work. The value of this field will affect the formatting the *postnote* argument to a citation command. The key should be given in the singular form. Possible keys are `page`, `column`, `line`, `verse`, `section`, and `paragraph`. See also `bookpagination`."
    },
    {
      "name": "part",
      "documentation": "The number of a partial volume. This field applies to books only, not to journals. It may be used when a logical volume consists of two or more physical ones. In this case the number of the logical volume goes in the `volume` field and the number of the part of that volume in the `part` field. See also `volume`."
    },
    {
      "name": "publisher",
      "documentation": "The name(s) of the publisher(s)."
    },
    {
      "name": "pubstate",
      "documentation": "The publication state of the work, e. g., 'in press'."
    },
    {
      "name": "reprinttitle",
      "documentation": "The title of a reprint of the work. Not used by the standard styles."
    },
    {
      "name": "series",
      "documentation": "The name of a publication series, such as \"Studies in …\", or the number of a journal series. Books in a publication series are usually numbered. The number or volume of a book in a series is given in the `number` field. Note that the `@article` entry type makes use of the `series` field as well, but handles it in a special way."
    },
    {
      "name": "shortauthor",
      "documentation": "The author(s) of the work, given in an abbreviated form. This field is mainly intended for abbreviated forms of corporate authors."
    },
    {
      "name": "shorteditor",
      "documentation": "The editor(s) of the work, given in an abbreviated form. This field is mainly intended for abbreviated forms of corporate editors."
    },
    {
      "name": "shorthand",
      "documentation": "A special designation to be used by the citation style instead of the usual label. If defined, it overrides the default label. See also `label`."
    },
    {
      "name": "shorthandintro",
      "documentation": "The verbose citation styles which comes with this package use a phrase like \"henceforth cited as [shorthand]\" to introduce shorthands on the first citation. If the `shorthandintro` field is defined, it overrides the standard phrase. Note that the alternative phrase must include the shorthand."
    },
    {
      "name": "shortjournal",
      "documentation": "A short version or an acronym of the `journaltitle`. Not used by the standard bibliography styles."
    },
    {
      "name": "shortseries",
      "documentation": "A short version or an acronym of the `series` field. Not used by the standard bibliography styles."
    },
    {
      "name": "shorttitle",
      "documentation": "The title in an abridged form. This field is usually not included in the bibliography. It is intended for citations in author-title format. If present, the author-title citation styles use this field instead of `title`."
    },
    {
      "name": "subtitle",
      "documentation": "The subtitle of the work."
    },
    {
      "name": "title",
      "documentation": "The title of the work."
    },
    {
      "name": "titleaddon",
      "documentation": "An annex to the `title`, to be printed in a different font."
    },
    {
      "name": "translator",
      "documentation": "The translator(s) of the `title` or `booktitle`, depending on the entry type. If the translator is identical to the `editor`, the standard styles will automatically concatenate these fields in the bibliography."
    },
    {
      "name": "type",
      "documentation": "The type of a `manual`, `patent`, `report`, or `thesis`."
    },
    {
      "name": "url",
      "documentation": "The URL of an online publication. If it is not URL-escaped (no ‘%’ chars) it will be URI-escaped according to RFC 3987, that is, even Unicode chars will be correctly escaped."
    },
    {
      "name": "urldate",
      "documentation": "The access date of the address specified in the `url` field."
    },
    {
      "name": "venue",
      "documentation": "The location of a conference, a symposium, or some other event in `@proceedings` and `@inproceedings` entries. Note that the `location` list holds the place of publication. It therefore corresponds to the `publisher` and `institution` lists. The location of the event is given in the `venue` field. See also `eventdate` and `eventtitle`."
    },
    {
      "name": "version",
      "documentation": "The revision number of a piece of software, a manual, etc."
    },
    {
      "name": "volume",
      "documentation": "The volume of a multi-volume book or a periodical. It is expected to be an integer, not necessarily in arabic numerals since `biber` will automatically from roman numerals or arabic letter to integers internally for sorting purposes. See also `part`. See the `noroman` option which can be used to suppress roman numeral parsing. This can help in cases where there is an ambiguity between parsing as roman numerals or alphanumeric (e.g. ‘C’)."
    },
    {
      "name": "volumes",
      "documentation": "The total number of volumes of a multi-volume work. Depending on the entry type, this field refers to `title` or `maintitle`. It is expected to be an integer, not necessarily in arabic numerals since `biber` will automatically from roman numerals or arabic letter to integers internally for sorting purposes. See the `noroman` option which can be used to suppress roman numeral parsing. This can help in cases where there is an ambiguity between parsing as roman numerals or alphanumeric (e.g. ‘C’)."
    },
    {
      "name": "year",
      "documentation": "The year of publication. This field is a literal field only when given explicitly in the data (for plain BibTeX compatibility for example). It is however better to use the `date` field as this is compatible with plain years too and supports many more features."
    },
    {
      "name": "crossref",
      "documentation": "This field holds an entry key for the cross-referencing feature. Child entries with a `crossref` field inherit data from the parent entry specified in the `crossref` field. If the number of child entries referencing a specific parent entry hits a certain threshold, the parent entry is automatically added to the bibliography even if it has not been cited explicitly. The threshold is settable with the `mincrossrefs` package option. Style authors should note that whether or not the `crossref` fields of the child entries are defined on the `biblatex` level depends on the availability of the parent entry. If the parent entry is available, the `crossref` fields of the child entries will be defined. If not, the child entries still inherit the data from the parent entry but their `crossref` fields will be undefined. Whether the parent entry is added to the bibliography implicitly because of the threshold or explicitly because it has been cited does not matter. See also the `xref` field."
    },
    {
      "name": "entryset",
      "documentation": "This field is specific to entry sets. This field is consumed by the backend processing and does not appear in the `.bbl`."
    },
    {
      "name": "execute",
      "documentation": "A special field which holds arbitrary TeX code to be executed whenever the data of the respective entry is accessed. This may be useful to handle special cases. Conceptually, this field is comparable to the hooks `AtEveryBibitem`, `AtEveryLositem`, and `AtEveryCitekey`, except that it is definable on a per-entry basis in the `bib` file. Any code in this field is executed automatically immediately after these hooks."
    },
    {
      "name": "gender",
      "documentation": "The gender of the author or the gender of the editor, if there is no author. The following identifiers are supported: `sf` (feminine singular, a single female name), `sm` (masculine singular, a single male name), `sn` (neuter singular, a single neuter name), `pf` (feminine plural, a list of female names), `pm` (masculine plural, a list of male names), `pn` (neuter plural, a list of neuter names),`pp` (plural, a mixed gender list of names). This information is only required by special bibliography and citation styles and only in certain languages. For example, a citation style may replace recurrent author names with a term such as 'idem'. If the Latin word is used, as is custom in English and French, there is no need to specify the gender. In German publications, however, such key terms are usually given in German and in this case they are gender-sensitive."
    },
    {
      "name": "langid",
      "documentation": "The language id of the bibliography entry. The alias `hyphenation` is provided for backwards compatibility. The identifier must be a language name known to the `babel/polyglossia` packages. This information may be used to switch hyphenation patterns and localise strings in the bibliography. Note that the language names are case sensitive. The languages currently supported by this package are given in table 2. Note that `babel` treats the identifier `english` as an alias for `british` or `american`, depending on the `babel` version. The `biblatex` package always treats it as an alias for `american`. It is preferable to use the language identifiers `american` and `british` (`babel`) or a language specific option to specify a language variant (`polyglossia`, using the `langidopts` field) to avoid any possible confusion."
    },
    {
      "name": "langidopts",
      "documentation": "For `polyglossia` users, allows per-entry language specific options. The literal value of this field is passed to `polyglossia`’s language switching facility when using the package option `autolang=langname`."
    },
    {
      "name": "ids",
      "documentation": "Citation key aliases for the main citation key. An entry may be cited by any of its aliases and `biblatex` will treat the citation as if it had used the primary citation key. This is to aid users who change their citation keys but have legacy documents which use older keys for the same entry. This field is consumed by the backend processing and does not appear in the `.bbl`."
    },
    {
      "name": "indexsorttitle",
      "documentation": "The title used when sorting the index. In contrast to indextitle, this field is used for sorting only. The printed title in the index is the indextitle or the title field. This field may be useful if the title contains special characters or commands which interfere with the sorting of the index. Style authors should note that biblatex automatically copies the value of either the indextitle or the title field to indexsorttitle if the latter field is undefined."
    },
    {
      "name": "keywords",
      "documentation": "A separated list of keywords. These keywords are intended for the bibliography filters, they are usually not printed. Note that with the default separator (comma), spaces around the separator are ignored."
    },
    {
      "name": "options",
      "documentation": "A separated list of entry options in *key*=*value* notation. This field is used to set options on a per-entry basis. Note that citation and bibliography styles may define additional entry options."
    },
    {
      "name": "presort",
      "documentation": "A special field used to modify the sorting order of the bibliography. This field is the first item the sorting routine considers when sorting the bibliography, hence it may be used to arrange the entries in groups. This may be useful when creating subdivided bibliographies with the bibliography filters. This field is consumed by the backend processing and does not appear in the `.bbl`."
    },
    {
      "name": "related",
      "documentation": "Citation keys of other entries which have a relationship to this entry. The relationship is specified by the `relatedtype` field."
    },
    {
      "name": "relatedoptions",
      "documentation": "Per-type options to set for a related entry. Note that this does not set the options on the related entry itself, only the `dataonly` clone which is used as a datasource for the parent entry."
    },
    {
      "name": "relatedtype",
      "documentation": "An identifier which specified the type of relationship for the keys listed in the `related` field. The identifier is a localised bibliography string printed before the data from the related entry list. It is also used to identify type-specific formatting directives and bibliography macros for the related entries."
    },
    {
      "name": "relatedstring",
      "documentation": "A field used to override the bibliography string specified by `relatedtype`."
    },
    {
      "name": "sortkey",
      "documentation": "A field used to modify the sorting order of the bibliography. Think of this field as the master sort key. If present, `biblatex` uses this field during sorting and ignores everything else, except for the presort field. This field is consumed by the backend processing and does not appear in the `.bbl`."
    },
    {
      "name": "sortname",
      "documentation": "A name or a list of names used to modify the sorting order of the bibliography. If present, this list is used instead of `author` or `editor` when sorting the bibliography. This field is consumed by the backend processing and does not appear in the `.bbl`."
    },
    {
      "name": "sortshorthand",
      "documentation": "Similar to sortkey but used in the list of shorthands. If present, biblatex uses this field instead of shorthand when sorting the list of shorthands. This is useful if the shorthand field holds shorthands with formatting commands such as `emph` or `\textbf`. This field is consumed by the backend processing and does not appear in the `.bbl`."
    },
    {
      "name": "sorttitle",
      "documentation": "A field used to modify the sorting order of the bibliography. If present, this field is used instead of the title field when sorting the bibliography. The sorttitle field may come in handy if you have an entry with a title like \"An Introduction to…\" and want that alphabetized under ‘I’ rather than ‘A’. In this case, you could put \"Introduction to…\" in the sorttitle field. This field is consumed by the backend processing and does not appear in the `.bbl`."
    },
    {
      "name": "sortyear",
      "documentation": "A field used to modify the sorting order of the bibliography. In the default sorting templates, if this field is present, it is used instead of the year field when sorting the bibliography. This field is consumed by the backend processing and does not appear in the `.bbl`."
    },
    {
      "name": "xdata",
      "documentation": "This field inherits data from one or more `@xdata` entries. Conceptually, the `xdata` field is related to crossref and xref: `crossref` establishes a logical parent/child relation and inherits data; `xref` establishes as logical parent/child relation without inheriting data; `xdata` inherits data without establishing a relation. The value of the `xdata` may be a single entry key or a separated list of keys. This field is consumed by the backend processing and does not appear in the `.bbl`."
    },
    {
      "name": "xref",
      "documentation": "This field is an alternative cross-referencing mechanism. It differs from `crossref` in that the child entry will not inherit any data from the parent entry specified in the `xref` field. If the number of child entries referencing a specific parent entry hits a certain threshold, the parent entry is automatically added to the bibliography even if it has not been cited explicitly. The threshold is settable with the `minxrefs` package option. Style authors should note that whether or not the `xref` fields of the child entries are defined on the `biblatex` level depends on the availability of the parent entry. If the parent entry is available, the `xref` fields of the child entries will be defined. If not, their `xref` fields will be undefined. Whether the parent entry is added to the bibliography implicitly because of the threshold or explicitly because it has been cited does not matter. See also the `crossref` field."
    },
    {
      "name": "namea",
      "documentation": "Custom lists for special bibliography styles. Not used by the standard bibliography styles."
    },
    {
      "name": "nameb",
      "documentation": "Custom lists for special bibliography styles. Not used by the standard bibliography styles."
    },
    {
      "name": "namec",
      "documentation": "Custom lists for special bibliography styles. Not used by the standard bibliography styles."
    },
    {
      "name": "nameatype",
      "documentation": "Similar to `authortype` and `editortype` but referring to the fields `name[a--c]`. Not used by the standard bibliography styles."
    },
    {
      "name": "namebtype",
      "documentation": "Similar to `authortype` and `editortype` but referring to the fields `name[a--c]`. Not used by the standard bibliography styles."
    },
    {
      "name": "namectype",
      "documentation": "Similar to `authortype` and `editortype` but referring to the fields `name[a--c]`. Not used by the standard bibliography styles."
    },
    {
      "name": "lista",
      "documentation": "Custom lists for special bibliography styles. Not used by the standard bibliography styles."
    },
    {
      "name": "listb",
      "documentation": "Custom lists for special bibliography styles. Not used by the standard bibliography styles."
    },
    {
      "name": "listc",
      "documentation": "Custom lists for special bibliography styles. Not used by the standard bibliography styles."
    },
    {
      "name": "listd",
      "documentation": "Custom lists for special bibliography styles. Not used by the standard bibliography styles."
    },
    {
      "name": "liste",
      "documentation": "Custom lists for special bibliography styles. Not used by the standard bibliography styles."
    },
    {
      "name": "listf",
      "documentation": "Custom lists for special bibliography styles. Not used by the standard bibliography styles."
    },
    {
      "name": "usera",
      "documentation": "Custom fields for special bibliography styles. Not used by the standard bibliography styles."
    },
    {
      "name": "userb",
      "documentation": "Custom fields for special bibliography styles. Not used by the standard bibliography styles."
    },
    {
      "name": "userc",
      "documentation": "Custom fields for special bibliography styles. Not used by the standard bibliography styles."
    },
    {
      "name": "userd",
      "documentation": "Custom fields for special bibliography styles. Not used by the standard bibliography styles."
    },
    {
      "name": "usere",
      "documentation": "Custom fields for special bibliography styles. Not used by the standard bibliography styles."
    },
    {
      "name": "userf",
      "documentation": "Custom fields for special bibliography styles. Not used by the standard bibliography styles."
    },
    {
      "name": "verba",
      "documentation": "Similar to the custom fields except that these are verbatim fields. Not used by the standard bibliography styles."
    },
    {
      "name": "verbb",
      "documentation": "Similar to the custom fields except that these are verbatim fields. Not used by the standard bibliography styles."
    },
    {
      "name": "verbc",
      "documentation": "Similar to the custom fields except that these are verbatim fields. Not used by the standard bibliography styles."
    },
    {
      "name": "address",
      "documentation": "An alias for `location`, provided for BibTeX compatibility. Traditional BibTeX uses the slightly misleading field name `address` for the place of publication, i. e., the location of the publisher, while `biblatex` uses the generic field name `location`."
    },
    {
      "name": "annote",
      "documentation": "An alias for `annotation`, provided for jurabib compatibility."
    },
    {
      "name": "archiveprefix",
      "documentation": "An alias for `eprinttype`, provided for arXiv compatibility."
    },
    {
      "name": "journal",
      "documentation": "An alias for `journaltitle`, provided for BibTeX compatibility."
    },
    {
      "name": "key",
      "documentation": "An alias for `sortkey`, provided for BibTeX compatibility."
    },
    {
      "name": "pdf",
      "documentation": "An alias for `file`, provided for JabRef compatibility."
    },
    {
      "name": "primaryclass",
      "documentation": "An alias for `eprintclass`, provided for arXiv compatibility."
    },
    {
      "name": "school",
      "documentation": "An alias for `institution`, provided for BibTeX compatibility. The `institution` field is used by traditional BibTeX for technical reports whereas the `school` field holds the institution associated with theses. The `biblatex` package employs the generic field name `institution` in both cases."
    }
  ],
  "pgfLibraries": [
    "arrows",
    "arrows.meta",
    "arrows.spaced",
    "curvilinear",
    "datavisualization.barcharts",
    "datavisualization.formats.functions",
    "datavisualization.polar",
    "decorations.footprints",
    "decorations.fractals",
    "decorations.markings",
    "decorations.pathmorphing",
    "decorations.pathreplacing",
    "decorations.shapes",
    "decorations.text",
    "fadings",
    "fixedpointarithmetic",
    "fpu",
    "intersections",
    "lindenmayersystems",
    "luamath",
    "patterns",
    "patterns.meta",
    "plothandlers",
    "plotmarks",
    "profiler",
    "shadings",
    "shapes.arrows",
    "shapes.callouts",
    "shapes",
    "shapes.gates.ee",
    "shapes.gates.ee.IEC",
    "shapes.gates.logic",
    "shapes.gates.logic.IEC",
    "shapes.gates.logic.US",
    "shapes.geometric",
    "shapes.misc",
    "shapes.multipart",
    "shapes.symbols",
    "snakes",
    "svg.path"
  ],
  "tikzLibraries": [
    "3d",
    "angles",
    "arrows",
    "automata",
    "babel",
    "backgrounds",
    "bending",
    "calc",
    "calendar",
    "chains",
    "circuits",
    "circuits.ee",
    "circuits.ee.IEC",
    "circuits.logic.CDH",
    "circuits.logic",
    "circuits.logic.IEC",
    "circuits.logic.US",
    "datavisualization.3d",
    "datavisualization.barcharts",
    "datavisualization",
    "datavisualization.formats.functions",
    "datavisualization.polar",
    "datavisualization.sparklines",
    "decorations",
    "decorations.footprints",
    "decorations.fractals",
    "decorations.markings",
    "decorations.pathmorphing",
    "decorations.pathreplacing",
    "decorations.shapes",
    "decorations.text",
    "er",
    "fadings",
    "fit",
    "fixedpointarithmetic",
    "folding",
    "fpu",
    "graphs",
    "graphs.standard",
    "intersections",
    "lindenmayersystems",
    "math",
    "matrix",
    "mindmap",
    "patterns",
    "patterns.meta",
    "petri",
    "plothandlers",
    "plotmarks",
    "positioning",
    "quotes",
    "scopes",
    "shadings",
    "shadows",
    "shapes.arrows",
    "shapes.callouts",
    "shapes",
    "shapes.gates.logic.IEC",
    "shapes.gates.logic.US",
    "shapes.geometric",
    "shapes.misc",
    "shapes.multipart",
    "shapes.symbols",
    "snakes",
    "spy",
    "svg.path",
    "through",
    "topaths",
    "trees",
    "turtle"
  ],
  "mathEnvironments": [
    "align",
    "align*",
    "alignat",
    "alignat*",
    "aligned",
    "aligned*",
    "alignedat",
    "alignedat*",
    "array",
    "array*",
    "Bmatrix",
    "Bmatrix*",
    "bmatrix",
    "bmatrix*",
    "cases",
    "cases*",
    "CD",
    "CD*",
    "eqnarray",
    "eqnarray*",
    "equation",
    "equation*",
    "gather",
    "gather*",
    "gathered",
    "gathered*",
    "matrix",
    "matrix*",
    "multline",
    "multline*",
    "pmatrix",
    "pmatrix*",
    "smallmatrix",
    "smallmatrix*",
    "split",
    "split*",
    "subarray",
    "subarray*",
    "Vmatrix",
    "Vmatrix*",
    "vmatrix",
    "vmatrix*"
  ],
  "enumEnvironments": [
    "enumerate",
    "itemize",
    "description"
  ]
}